View Single Post
  #2  
Old 10-14-2014, 07:49 PM
Struggler Struggler is offline
Zone Repulser =D
Struggler's Avatar
Join Date: May 2006
Posts: 54
Struggler is an unknown quantity at this point
An example of the current script I'm referring to (weapon script)
Quote:
function onActionServerside(){
if (params[0] == "updatevars"){
clientr.treescut = 0;
}
}
//#CLIENTSIDE
function onCreated(){
if (!clientr.treescut){
triggerserver("gui",this.name,"updatevars");
}
}
Reply With Quote