tomb_guard3.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : tomb_guard3.lua
  3. Script Purpose : Waypoint Path for tomb_guard3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 01:44:41 AM
  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, 76.29, 0, -10.57, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 78.35, 0, -10.15, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 75.14, 0.05, -13.94, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 78.11, 0, -10.78, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 76.29, 0, -10.52, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 77.98, 0.06, -30.51, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 75.8, 0, -11.4, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 77.98, 0.06, -30.51, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 76.29, 0, -10.52, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 78.11, 0, -10.78, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 75.14, 0.05, -13.94, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 78.35, 0, -10.15, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 76.29, 0, -10.57, 2, math.random(0,15))
  30. end