Advertisement
Nolifeq

bicie opka

Nov 23rd, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. // ==UserScript==
  2. // @name bicie e2, heros
  3. // @description atakuje e2 i heros
  4. // @version 21.37
  5. // @author gapet
  6. // @match http://*.margonem.pl/
  7. // ==/UserScript==
  8.  
  9. ((npc) => {
  10. setInterval(() => {
  11. npc.forEach(id => {
  12. if(!g.battle){
  13. if((id.nick == 'Negthotep Czarny KapΕ‚an')|| (id.wt>79 && id.wt<99) ||(id.nick == 'Chopesz' && id.fake != true) || (id.nick == 'Chopesz' && id.fake != true) ||(id.wt>19 && id.wt<78 && id.fake != true && (hero.lvl - id.lvl <=13))
  14. ){
  15. hero.margoMove(id.x,id.y)
  16. if((Math.abs(hero.x - id.x)<=1) && (Math.abs(hero.y - id.y)<=1)){
  17. setTimeout(_g(`fight&a=attack&ff=1&id=-${id.id}`),200)
  18. }
  19. }
  20. }
  21. }
  22. )
  23. }, 500)
  24. })(g.npc)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement