tomb_priest.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : tomb_priest.lua
  3. Script Purpose : Waypoint Path for tomb_priest.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:08:16 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.11, -6.86, -144.42, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 233.06, -6.86, -134.49, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 254.31, -6.86, -133.44, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 249.53, -6.86, -136.86, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 248.3, -6.86, -148.03, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 238.6, -6.86, -133.95, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 237.02, -6.86, -145.13, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 233.42, -6.86, -148.83, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 237.63, -6.86, -149.24, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 240.23, -6.86, -142.28, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 246.29, -6.86, -141.96, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 235.85, -6.86, -143.77, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 246.29, -6.86, -141.96, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 240.23, -6.86, -142.28, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 237.63, -6.86, -149.24, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 233.42, -6.86, -148.83, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, 237.02, -6.86, -145.13, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, 238.6, -6.86, -133.95, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, 248.3, -6.86, -148.03, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, 249.53, -6.86, -136.86, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, 254.31, -6.86, -133.44, 2, math.random(0,10))
  38. MovementLoopAddLocation(NPC, 233.06, -6.86, -134.49, 2, math.random(0,10))
  39. MovementLoopAddLocation(NPC, 235.11, -6.86, -144.42, 2, math.random(0,10))
  40. end