View Single Post
  #30  
Old 04-09-2011, 08:22 PM
skillmaster19 skillmaster19 is offline
Registered User
Join Date: Oct 2010
Posts: 392
skillmaster19 will become famous soon enough
Quote:
Originally Posted by ffcmike View Post
You could try using triggeraction to simply communicate hits from Clientside to Serverside.

Such as like:

PHP Code:
function onCreated(){
  
this.setshape(13232);
}

function 
onActionHit(){
  
//stuff
}

//#CLIENTSIDE

function onWasH1t(){
  
triggeraction(this.1this.1"Hit"params);

Doesn't seem to work, I also tried triggering the server to do the stuff needed when hit.
Reply With Quote