tomb_guard11.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : tomb_guard11.lua
  3. Script Purpose : Waypoint Path for tomb_guard11.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 05:23:54 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, 188.27, -6.97, -94.02, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, 186.21, -6.75, -89.32, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 188.35, -7.12, -90.51, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 188.28, -6.97, -93.88, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 186.84, -6.97, -93.88, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 185.57, -6.25, -91.6, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 189.59, -7.19, -91.31, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 185.57, -6.25, -91.6, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 186.84, -6.97, -93.88, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 188.28, -6.97, -93.88, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 188.35, -7.12, -90.51, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 186.21, -6.75, -89.32, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 188.27, -6.97, -94.02, 2, math.random(0,5))
  30. end