Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).keyup(function(e){
  2. if(e.which==69){
  3. for(var i in g.npc){
  4. if ((Math.abs(hero.rx - g.npc[i].x) <= 1 && Math.abs(hero.ry - g.npc[i].y) <= 1) && (g.npc[i].type == 2 || g.npc[i].type == 3)){
  5. message('atakowany przeciwnik: "'+g.npc[i].nick+'"');
  6. _g("fight&a=attack&ff=1&id=-"+i);
  7. break;
  8. }
  9. }
  10. }//test
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement