View Single Post
  #5  
Old 09-02-2008, 08:12 AM
[email protected] sid.gottlieb@googlemail.com is offline
Banned
Join Date: Mar 2008
Posts: 861
sid.gottlieb@googlemail.com will become famous soon enough
for Era?

[The Class]
HTML Code:
function onCreated() {
  this.setShape(1, 32, 32);
}

function onActionDetect() {
  //Public function for doing damage
}
//#CLIENTSIDE
function onPlayerEnters() {
  this.x = random(this.x - 10, this.x + 10); //Make it random...
  setTimer(0.05);
}

function onTimeout() {
  if (player.x in |this.x, this.x + 32| && player.y in |this.y, this.y + 32|) {
    if (this.wait =< 0) {
      triggeraction(this.x, this.y, "Detect", "");
      this.wait = 4;
    }
  }
  if (this.wait > 0) this.wait -= 0.05;
  setTimer(0.05);
}
Reply With Quote