tomb_guard20.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : tomb_guard20.lua
  3. Script Purpose : Waypoint Path for tomb_guard20.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:17:52 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 234.44, 0, -173.15, 2, math.random(0,3))
  18. MovementLoopAddLocation(NPC, 234.26, 0, -163.07, 2, math.random(0,3))
  19. MovementLoopAddLocation(NPC, 232.29, 0, -163.16, 2, math.random(0,3))
  20. MovementLoopAddLocation(NPC, 237.97, 0, -162.78, 2, math.random(0,3))
  21. MovementLoopAddLocation(NPC, 233.86, 0, -158.27, 2, math.random(0,3))
  22. MovementLoopAddLocation(NPC, 238.25, 0, -158.16, 2, math.random(0,3))
  23. MovementLoopAddLocation(NPC, 238.26, 0, -160.88, 2, math.random(0,3))
  24. MovementLoopAddLocation(NPC, 233.68, 0, -160, 2, math.random(0,3))
  25. MovementLoopAddLocation(NPC, 234.69, 0, -159.85, 2, math.random(0,3))
  26. MovementLoopAddLocation(NPC, 236.06, 0, -173.58, 2, math.random(0,3))
  27. MovementLoopAddLocation(NPC, 235.61, 0, -160.07, 2, math.random(0,3))
  28. MovementLoopAddLocation(NPC, 236.06, 0, -173.58, 2, math.random(0,3))
  29. MovementLoopAddLocation(NPC, 234.69, 0, -159.85, 2, math.random(0,3))
  30. MovementLoopAddLocation(NPC, 233.68, 0, -160, 2, math.random(0,3))
  31. MovementLoopAddLocation(NPC, 238.26, 0, -160.88, 2, math.random(0,3))
  32. MovementLoopAddLocation(NPC, 238.25, 0, -158.16, 2, math.random(0,3))
  33. MovementLoopAddLocation(NPC, 233.86, 0, -158.27, 2, math.random(0,3))
  34. MovementLoopAddLocation(NPC, 237.97, 0, -162.78, 2, math.random(0,3))
  35. MovementLoopAddLocation(NPC, 232.29, 0, -163.16, 2, math.random(0,3))
  36. MovementLoopAddLocation(NPC, 234.26, 0, -163.07, 2, math.random(0,3))
  37. MovementLoopAddLocation(NPC, 234.44, 0, -173.15, 2, math.random(0,3))
  38. end