zibbol

Untitled

Feb 24th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. macro(10, "open monster flames", function()
  2. for i, tile in ipairs(g_map.getTiles(posz())) do
  3. for u,item in ipairs(tile:getItems()) do
  4. if (item:getId() == 5022) then
  5. autoWalk(tile:getPosition(), 100, {ignoreNonPathable = true})
  6. end
  7. end
  8. end
  9. end)
  10.  
  11.  
  12. macro(10, "StepIn monster box", function()
  13. for i, tile in ipairs(g_map.getTiles(posz())) do
  14. for u,item in ipairs(tile:getItems()) do
  15. if (item:getId() == 9586) then
  16. autoWalk(tile:getPosition(), 100, {ignoreNonPathable = true})
  17. end
  18. end
  19. end
  20. end)
  21. macro(50, "spell", function()
  22. saySpell("exevo gran mas holy", 200)
  23. delay(10)
  24. end)
Advertisement
Add Comment
Please, Sign In to add comment