Thread: using 'move()'
View Single Post
  #7  
Old 05-18-2009, 06:10 PM
[email protected] sid.gottlieb@googlemail.com is offline
Banned
Join Date: Mar 2008
Posts: 861
sid.gottlieb@googlemail.com will become famous soon enough
HTML Code:
//Serverside
function onCreated() {
  this.showcharacter();
  this.ani = "gani";
    //Auto destroy in 15
  setTimer(15);
}

function onTimeout() {
  this.destroy();
}
function onActionTakeDart() {
  this.destroy();
}
//#CLIENTSIDE
function onCreated() {
  this.showcharacter();
}
function onPlayerTouchsMe() {
  triggeraction(this.x, this.y, "TakeDart", "");
}
no reason..
Reply With Quote