Thread: Radio
View Single Post
  #1  
Old 05-21-2001, 11:59 AM
LiquidIce00 LiquidIce00 is offline
RadioActive Monkeeh
LiquidIce00's Avatar
Join Date: Apr 2001
Location: dirty south
Posts: 2,112
LiquidIce00 is on a distinguished road
Send a message via ICQ to LiquidIce00 Send a message via AIM to LiquidIce00 Send a message via Yahoo to LiquidIce00
Those arent hard.
This is like u can be in separate rooms and the radio shows the message u set from the other radio..

Syntax:sendmessage message goes here

(might be buggy im just scripting here , not tested)

Radio1 would have:

//Npc Made By LiquidIce

if (playerenters) {
setcharprop #c, #s(server.radio1);
timeout=1;
}
if (timeout) { setcharprop #c, #s(server.radio1); timeout=1; }
if (playerchats) {
tokenize #c;
if (strequals(#t(0),sendmessage)) {
this.count=1;
setstring server.radio2,;
while (this.count<tokenscount) {
setstring server.radio2,#s(server.radio2) #t(this.count);
setstring server.radio2,#T(#s(server.radio2));
this.count++;
}
}
}

and Radio 2

//Npc Made By LiquidIce

if (playerenters) {
setcharprop #c, #s(server.radio2);
timeout=1;
}
if (timeout) { setcharprop #c, #s(server.radio2); timeout=1; }
if (playerchats) {
tokenize #c;
if (strequals(#t(0),sendmessage)) {
this.count=1;
setstring server.radio1,;
while (this.count<tokenscount) {
setstring server.radio1,#s(server.radio1) #t(this.count);
setstring server.radio1,#T(#s(server.radio1));
this.count++;
}
}
}
__________________
LiquidIce *Owner* (UnholyNation)
-UN Website
http://www.unholynation.com
-UN Forum
http://forums.unholynation.com
-
-the thinker
-

-
onwall2 for nonp2p (i suck at onwall)
Reply With Quote