View Single Post
  #3  
Old 09-11-2011, 09:04 PM
Emera Emera is offline
Delterian Hybrid
Emera's Avatar
Join Date: Mar 2011
Location: Newcastle Upon-Tyne
Posts: 1,704
Emera is a jewel in the roughEmera is a jewel in the rough
MHM?
PHP Code:
function onActionServerside() {
 if (
params[0] == "play") {
   for (
temp.pl allplayers) {
     
pl.triggerclient("gui",this.name,"playing");
     
serverr.playing params[1];
   }
 }
}
//#CLIENTSIDE
function onPlayerChats() {
  if (
player.chat.starts("/play ")) {
    
setani("boom",NULL);
    
triggerserver("gui",this.name,"play",player.chat.substring(6));
  }
  if (
player.chat == "/stop") {
    
stopmusic();
  }
  if (
player.chat.starts("/ani ")) {
    
setani(@player.chat.substring(5), NULL);
  }
}
function 
onActionClientside() {
  if (
params[0] == "playing") {
    
play(serverr.playing);
    
player.chat "Works";
  }

__________________

Last edited by Emera; 09-11-2011 at 09:16 PM..
Reply With Quote