View Single Post
  #3  
Old 05-24-2012, 10:48 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by fowlplay4 View Post
Why can't you use schedule event?

PHP Code:
function onActionServerSide() {
  
blah();
  
blah();
  
clientr.testvalue 0;
  
this.scheduleevent(5"ChangeTestValue"player.account);
}

function 
onChangeTestValue(pl) {
  
pl findplayer(pl);
  if (
pl != NULL) { 
    
pl.clientr.testvalue 1;
  }

Even better:

PHP Code:
function onActionServerSide() { 
  
blah(); 
  
blah(); 
  
clientr.testvalue 0
  
this.scheduleevent(5"ChangeTestValue"player); // send the player object instead of the account


function 
onChangeTestValue(pl) { 
  if (
pl != NULL) {  
    
pl.clientr.testvalue 1
  } 

__________________
Reply With Quote