View Single Post
  #8  
Old 08-31-2005, 02:26 AM
Lance Lance is offline
dark overlord
Lance's Avatar
Join Date: Sep 2003
Location: Space Jam Mountain
Posts: 5,072
Lance is on a distinguished road
Quote:
Originally Posted by Bl0nkt
NPC Code:
if (actionserverside) { 
if (strequals(#p(0),playsong)) {
setstring clientr.song,strtofloat(#p(1));
play #s(clientr.song);
}
}

//#CLIENTSIDE
if (playerchats && startswith(/play,#c) && tokenscount == 2) {
tokenize #c;
triggeraction 0,0,serverside,playsong,#t(1);
}



I believe this is right.
No. You cannot use the play command serverside.
Reply With Quote