tomb_priest2.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : tomb_priest2.lua
  3. Script Purpose : Waypoint Path for tomb_priest2.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:08:19 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, 250.87, -6.86, -134.09, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 253.97, -6.86, -136.72, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 233.2, -6.86, -136.29, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 233.36, -6.86, -139.41, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 241.52, -6.86, -146.99, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 235.92, -6.86, -144.82, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 249.37, -6.86, -140.56, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 249.26, -6.86, -131.28, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 250.25, -6.86, -139.52, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 235.09, -6.86, -149.61, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 235, -6.86, -145.89, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 235.09, -6.86, -149.61, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 250.25, -6.86, -139.52, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 249.26, -6.86, -131.28, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 249.37, -6.86, -140.56, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 235.92, -6.86, -144.82, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, 241.52, -6.86, -146.99, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, 233.36, -6.86, -139.41, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, 233.2, -6.86, -136.29, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, 253.97, -6.86, -136.72, 2, math.random(0,10))
  37. MovementLoopAddLocation(NPC, 250.87, -6.86, -134.09, 2, math.random(0,10))
  38. end