crypt_substance16.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. --[[
  2. Script Name : crypt_substance16.lua
  3. Script Purpose : Waypoint Path for crypt_substance16.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 02:45:11 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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -154.19, -0.07, -138.8, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, -127.54, -0.13, -134.39, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, -149.12, -0.08, -139.29, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, -158.74, 0.01, -133.61, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, -157.33, 0.47, -106.62, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, -149.57, -0.05, -94.81, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, -157.28, -0.06, -98.6, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, -142.65, -0.08, -78.3, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, -147.79, -0.07, -76.26, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, -152.73, -0.09, -87.7, 2, math.random(0,20))
  28. MovementLoopAddLocation(NPC, -148.59, -0.11, -84.49, 2, math.random(0,20))
  29. MovementLoopAddLocation(NPC, -152.73, -0.09, -87.7, 2, math.random(0,20))
  30. MovementLoopAddLocation(NPC, -147.79, -0.07, -76.26, 2, math.random(0,20))
  31. MovementLoopAddLocation(NPC, -142.65, -0.08, -78.3, 2, math.random(0,20))
  32. MovementLoopAddLocation(NPC, -157.28, -0.06, -98.6, 2, math.random(0,20))
  33. MovementLoopAddLocation(NPC, -149.57, -0.05, -94.81, 2, math.random(0,20))
  34. MovementLoopAddLocation(NPC, -157.33, 0.47, -106.62, 2, math.random(0,20))
  35. MovementLoopAddLocation(NPC, -158.74, 0.01, -133.61, 2, math.random(0,20))
  36. MovementLoopAddLocation(NPC, -149.12, -0.08, -139.29, 2, math.random(0,20))
  37. MovementLoopAddLocation(NPC, -127.54, -0.13, -134.39, 2, math.random(0,20))
  38. MovementLoopAddLocation(NPC, -154.19, -0.07, -138.8, 2, math.random(0,20))
  39. end