grave_scorpius4.lua 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : grave_scorpius4.lua
  3. Script Purpose : Waypoint Path for grave_scorpius4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 03:42:38 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, 205.71, -7, -120.17, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 223.11, -6.74, -104.29, 2, 0)
  19. MovementLoopAddLocation(NPC, 222.92, -6.32, -82.96, 2, 0)
  20. MovementLoopAddLocation(NPC, 218.26, -6.78, -76.82, 2, 0)
  21. MovementLoopAddLocation(NPC, 209.65, -6.8, -79.71, 2, 0)
  22. MovementLoopAddLocation(NPC, 207.76, -7.09, -90.04, 2, 0)
  23. MovementLoopAddLocation(NPC, 198.36, -7.08, -90.62, 2, 0)
  24. MovementLoopAddLocation(NPC, 197.86, -6.92, -54.54, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 198.36, -7.08, -90.62, 2, 0)
  26. MovementLoopAddLocation(NPC, 207.76, -7.09, -90.04, 2, 0)
  27. MovementLoopAddLocation(NPC, 209.65, -6.8, -79.71, 2, 0)
  28. MovementLoopAddLocation(NPC, 218.26, -6.78, -76.82, 2, 0)
  29. MovementLoopAddLocation(NPC, 222.92, -6.32, -82.96, 2, 0)
  30. MovementLoopAddLocation(NPC, 223.11, -6.74, -104.29, 2, 0)
  31. MovementLoopAddLocation(NPC, 205.71, -7, -120.17, 2, math.random(0,10))
  32. end