ilgar.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : ilgar.lua
  3. Script Purpose : Waypoint Path for ilgar.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 02:45:39 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. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 469.14, -20.96, 194.86, 2, 0)
  19. MovementLoopAddLocation(NPC, 406.76, -20.87, 145.25, 2, 0)
  20. MovementLoopAddLocation(NPC, 421.86, -20.93, 168.96, 2, 0)
  21. MovementLoopAddLocation(NPC, 436.36, -20.26, 209.37, 2, 0)
  22. MovementLoopAddLocation(NPC, 452.7, -21.95, 242.39, 2, 0)
  23. MovementLoopAddLocation(NPC, 441.84, -21.92, 263.49, 2, 0)
  24. MovementLoopAddLocation(NPC, 455.55, -21.92, 244.74, 2, 0)
  25. MovementLoopAddLocation(NPC, 469.7, -21.06, 196.34, 2, 0)
  26. MovementLoopAddLocation(NPC, 455.55, -21.92, 244.74, 2, 0)
  27. MovementLoopAddLocation(NPC, 441.84, -21.92, 263.49, 2, 0)
  28. MovementLoopAddLocation(NPC, 452.7, -21.95, 242.39, 2, 0)
  29. MovementLoopAddLocation(NPC, 436.36, -20.26, 209.37, 2, 0)
  30. MovementLoopAddLocation(NPC, 421.86, -20.93, 168.96, 2, 0)
  31. MovementLoopAddLocation(NPC, 406.76, -20.87, 145.25, 2, 0)
  32. MovementLoopAddLocation(NPC, 469.14, -20.96, 194.86, 2, 0)
  33. end