View Single Post
  #7  
Old 08-31-2005, 02:20 AM
Bl0nkt Bl0nkt is offline
Era Developer
Bl0nkt's Avatar
Join Date: Mar 2005
Location: Pennsylvania
Posts: 1,589
Bl0nkt will become famous soon enough
Send a message via AIM to 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.
Reply With Quote