tomb_priest3.lua 1021 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : tomb_priest3.lua
  3. Script Purpose : Waypoint Path for tomb_priest3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:13:17 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, 235.49, 0.77, -156.88, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 237.97, 0, -173.39, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 237.84, 0, -155.82, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 234.62, 0, -162.08, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 232.86, 0.01, -155.09, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 234.62, 0, -162.08, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 237.84, 0, -155.82, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 237.97, 0, -173.39, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 235.49, 0.77, -156.88, 2, math.random(0,7))
  26. end