View Single Post
  #19  
Old 08-01-2007, 11:11 AM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva


This will let you have the accuracy of timevar2, while keeping your time the same as everyone elses(though I haven't tested it with others to compare the time).

PHP Code:
function onActionserverside() {
  if (
params[0]=="getdiff") {
    
temp.timedifference=timevar2-params[1];
    
triggerclient("gui",name,"senddiff",temp.timedifference);
  }
}


//#CLIENTSIDE

function onCreated() {
  
triggerserver("gui",name,"getdiff",timevar2);
}

function 
onActionclientside() {
  if (
params[0]=="senddiff") {
    
this.timedifference=params[1];
    
onTimeout();
  }
}

function 
onTimeout() {
  
temp.time=timevar2+this.timedifference;

  
setTimer(0.05);


Last edited by DustyPorViva; 08-01-2007 at 12:12 PM..
Reply With Quote