grave_scorpius3.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : grave_scorpius3.lua
  3. Script Purpose : Waypoint Path for grave_scorpius3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 03:01: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, 157.09, -6.34, -108.9, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 181.21, -7.14, -110.06, 2, 0)
  19. MovementLoopAddLocation(NPC, 190.37, -6.93, -115.36, 2, 0)
  20. MovementLoopAddLocation(NPC, 201.28, -6.44, -123.62, 2, 0)
  21. MovementLoopAddLocation(NPC, 220.95, -6.82, -107.27, 2, 0)
  22. MovementLoopAddLocation(NPC, 222.45, -6.82, -81.02, 2, 0)
  23. MovementLoopAddLocation(NPC, 217.24, -6.81, -79.61, 2, 0)
  24. MovementLoopAddLocation(NPC, 210.73, -6.96, -80.88, 2, 0)
  25. MovementLoopAddLocation(NPC, 208.53, -6.93, -90.89, 2, 0)
  26. MovementLoopAddLocation(NPC, 191.84, -6.53, -91.63, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 208.53, -6.93, -90.89, 2, 0)
  28. MovementLoopAddLocation(NPC, 210.73, -6.96, -80.88, 2, 0)
  29. MovementLoopAddLocation(NPC, 217.24, -6.81, -79.61, 2, 0)
  30. MovementLoopAddLocation(NPC, 222.45, -6.82, -81.02, 2, 0)
  31. MovementLoopAddLocation(NPC, 220.95, -6.82, -107.27, 2, 0)
  32. MovementLoopAddLocation(NPC, 201.28, -6.44, -123.62, 2, 0)
  33. MovementLoopAddLocation(NPC, 190.37, -6.93, -115.36, 2, 0)
  34. MovementLoopAddLocation(NPC, 181.21, -7.14, -110.06, 2, 0)
  35. MovementLoopAddLocation(NPC, 157.09, -6.34, -108.9, 2, math.random(0,10))
  36. end