crypt_substance14.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : crypt_substance14.lua
  3. Script Purpose : Waypoint Path for crypt_substance14.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 02:16:10 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, -115.76, -0.07, -116.78, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, -122.7, 0.55, -119.14, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, -126.43, -0.12, -127.23, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, -128.18, -0.13, -135.37, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, -138.87, -0.03, -135.22, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, -149.63, -0.1, -137.19, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, -158.78, -0.01, -134.5, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, -156.62, -0.08, -127.11, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, -160.55, -0.04, -111.91, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, -145.8, -0.08, -74.41, 2, math.random(0,20))
  28. MovementLoopAddLocation(NPC, -160.55, -0.04, -111.91, 2, math.random(0,20))
  29. MovementLoopAddLocation(NPC, -156.62, -0.08, -127.11, 2, math.random(0,20))
  30. MovementLoopAddLocation(NPC, -158.78, -0.01, -134.5, 2, math.random(0,20))
  31. MovementLoopAddLocation(NPC, -149.63, -0.1, -137.19, 2, math.random(0,20))
  32. MovementLoopAddLocation(NPC, -138.87, -0.03, -135.22, 2, math.random(0,20))
  33. MovementLoopAddLocation(NPC, -128.18, -0.13, -135.37, 2, math.random(0,20))
  34. MovementLoopAddLocation(NPC, -126.43, -0.12, -127.23, 2, math.random(0,20))
  35. MovementLoopAddLocation(NPC, -122.7, 0.55, -119.14, 2, math.random(0,20))
  36. MovementLoopAddLocation(NPC, -115.76, -0.07, -116.78, 2, math.random(0,20))
  37. end