crypt_substance6.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. --[[
  2. Script Name : crypt_substance6.lua
  3. Script Purpose : Waypoint Path for crypt_substance6.lua
  4. Script Author : Devn00b
  5. Script Date : 05/10/2020 10:46:20 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, 6.32, -0.08, -109.59, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 16.18, 0.14, -100.14, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 11.36, -0.06, -108.4, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 1.34, -0.03, -106.71, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 0.85, -0.02, -101.09, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -3.99, 0.45, -97.51, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -12.71, -0.09, -90.2, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -32.5, 0.07, -108.99, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -35.16, -0.08, -112.79, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -33.84, 0.53, -126.35, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -35.32, -0.01, -132.67, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -41.08, -0.57, -138.33, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -35.32, -0.01, -132.67, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -33.84, 0.53, -126.35, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -35.16, -0.08, -112.79, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -32.5, 0.07, -108.99, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -12.71, -0.09, -90.2, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, -3.99, 0.45, -97.51, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 0.85, -0.02, -101.09, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 1.34, -0.03, -106.71, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 11.36, -0.06, -108.4, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 16.18, 0.14, -100.14, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 6.32, -0.08, -109.59, 2, math.random(0,5))
  41. end