View Single Post
  #14  
Old 01-06-2014, 05:30 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Looks fine to me except you probably don't want to send 20 triggers per second.

Hurting NPCs should probably be done serverside:

PHP Code:
function hurtNPCs() {
  for (
temp.npc findAreaNPCs(this.xthis.y22)) {
    
temp.npc.trigger("hurt");
  }

then you can add an onHurt function in any NPCs which can be hurt.
__________________
Reply With Quote