tomb_guard21.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : tomb_guard21.lua
  3. Script Purpose : Waypoint Path for tomb_guard21.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:56:18 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, 212.04, -6.97, -198.02, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 213.71, -6.97, -202.54, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 210.13, -6.97, -201.39, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 214.65, -6.97, -199.94, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 209.41, -6.97, -203.12, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 211.95, -6.97, -202.76, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 210.21, -6.97, -201.11, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 213.51, -6.97, -202.63, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 212.44, -6.97, -204, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 214.41, -6.97, -200.62, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 212.44, -6.97, -204, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 213.51, -6.97, -202.63, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 210.21, -6.97, -201.11, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 211.95, -6.97, -202.76, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 209.41, -6.97, -203.12, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 214.65, -6.97, -199.94, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, 210.13, -6.97, -201.39, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, 213.71, -6.97, -202.54, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, 212.04, -6.97, -198.02, 2, math.random(0,10))
  36. end