crypt_substance7.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : crypt_substance6_1.lua
  3. Script Purpose : Waypoint Path for crypt_substance6_1.lua
  4. Script Author : Devn00b
  5. Script Date : 05/10/2020 11:08:57 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, -20.48, -0.13, -80.69, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, -17.69, 0.02, -85.45, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, -13.31, -0.05, -90.94, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, -32.31, -0.02, -110, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, -36.11, -0.05, -111.31, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, -32.98, -0.11, -120.96, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, -34.85, -0.08, -129.97, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, -41.04, -0.56, -138.36, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, -56.58, -0.11, -153.22, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, -81.27, -0.09, -152.68, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, -56.58, -0.11, -153.22, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, -41.04, -0.56, -138.36, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, -34.85, -0.08, -129.97, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, -32.98, -0.11, -120.96, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, -36.11, -0.05, -111.31, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, -32.31, -0.02, -110, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, -13.31, -0.05, -90.94, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, -17.69, 0.02, -85.45, 2, math.random(0,10))
  36. MovementLoopAddLocation(NPC, -20.48, -0.13, -80.69, 2, math.random(0,10))
  37. end