alethrillix.lua 1012 B

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : alethrillix.lua
  3. Script Purpose : Waypoint Path for alethrillix.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 01:54:00 AM
  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, 65.65, 0, -18.4, 2, math.random(0,25))
  18. MovementLoopAddLocation(NPC, 71.22, 0.03, -17.3, 2, math.random(0,25))
  19. MovementLoopAddLocation(NPC, 71.33, 0, -19.84, 2, math.random(0,25))
  20. MovementLoopAddLocation(NPC, 68.57, 0.03, -20.26, 2, math.random(0,25))
  21. MovementLoopAddLocation(NPC, 65.93, 0.01, -16.57, 2, math.random(0,25))
  22. MovementLoopAddLocation(NPC, 68.57, 0.03, -20.26, 2, math.random(0,25))
  23. MovementLoopAddLocation(NPC, 71.33, 0, -19.84, 2, math.random(0,25))
  24. MovementLoopAddLocation(NPC, 71.22, 0.03, -17.3, 2, math.random(0,25))
  25. MovementLoopAddLocation(NPC, 65.65, 0, -18.4, 2, math.random(0,25))
  26. end