View Single Post
  #4  
Old 09-11-2011, 09:16 PM
Hezzy002 Hezzy002 is offline
Registered User
Join Date: Jul 2011
Posts: 247
Hezzy002 is a jewel in the roughHezzy002 is a jewel in the rough
PHP Code:
function onActionServerside(action) {
  if (
action == "play") {
    
song params[1];
    for (
pl players) {
      
pl.triggerClient("gui"name"play"song);
    }
  }
}
//#CLIENTSIDE
function onPlayerChats() {
  
temp.toks player.chat.tokenize();
  if (
temp.toks[0] == "/playsong") {
    
triggerserver("gui"nametemp.toks[1]);
  }
}

function 
onActionClientside(action) {
  if (
action == play) {
    
song params[1];
    
play(song);
  }

Ya?
Reply With Quote