Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. ---------- Extra Information --------
  2. -- Body IDs
  3. -- 4011 -- Minotaur
  4.  
  5.  
  6.  
  7.  
  8. local knifeID = 5908
  9. local corpseID = {4011,4047,4052,4057,4062,4112,4212,4321,4324,4327,10352,10356,10360,10364,10368}
  10. local num = 0
  11.  
  12.  
  13. while true do
  14. dofile("Forgee.lua")
  15. if (#Self.GetTargets(7) < 1) then
  16. for x = -7, 7 do
  17. for y = -5, 5 do
  18. local item = Map.GetTopUseItem(Self.Position().x + x, Self.Position().y + y, Self.Position().z)
  19. if table.find(corpseID, item.id) then
  20. setBotEnabled(false)
  21. Self.UseItemWithGround(knifeID, Self.Position().x + x, Self.Position().y + y, Self.Position().z)
  22. wait(800, 2200)
  23. setBotEnabled(true)
  24. break
  25. end
  26. end
  27. end
  28. end
  29. sleep(500)
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement