iceslayer.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --[[
  2. Script Name : iceslayer.lua
  3. Script Purpose : Waypoint Path for iceslayer.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 07:24:41 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, 541.45, -3.5, 136.91, 2, 0)
  19. MovementLoopAddLocation(NPC, 526.93, -3.5, 136.14, 2, 0)
  20. MovementLoopAddLocation(NPC, 510.52, -3.48, 134.38, 2, 0)
  21. MovementLoopAddLocation(NPC, 511.79, -3.48, 125.96, 2, 0)
  22. MovementLoopAddLocation(NPC, 527.66, -3.5, 128.38, 2, 0)
  23. MovementLoopAddLocation(NPC, 542.06, -3.5, 128.03, 2, 0)
  24. MovementLoopAddLocation(NPC, 542.42, -5.55, 121.07, 2, 0)
  25. MovementLoopAddLocation(NPC, 552.51, -5.55, 121.16, 2, 0)
  26. MovementLoopAddLocation(NPC, 552.24, -3.5, 127.63, 2, 0)
  27. MovementLoopAddLocation(NPC, 566.13, -3.5, 128.07, 2, 0)
  28. MovementLoopAddLocation(NPC, 582.44, -3.48, 125.97, 2, 0)
  29. MovementLoopAddLocation(NPC, 583.6, -3.48, 135.08, 2, 0)
  30. MovementLoopAddLocation(NPC, 567.53, -3.5, 136.55, 2, 0)
  31. MovementLoopAddLocation(NPC, 553.23, -3.5, 136.78, 2, 0)
  32. MovementLoopAddLocation(NPC, 567.53, -3.5, 136.55, 2, 0)
  33. MovementLoopAddLocation(NPC, 583.6, -3.48, 135.08, 2, 0)
  34. MovementLoopAddLocation(NPC, 582.44, -3.48, 125.97, 2, 0)
  35. MovementLoopAddLocation(NPC, 566.13, -3.5, 128.07, 2, 0)
  36. MovementLoopAddLocation(NPC, 552.24, -3.5, 127.63, 2, 0)
  37. MovementLoopAddLocation(NPC, 552.51, -5.55, 121.16, 2, 0)
  38. MovementLoopAddLocation(NPC, 542.42, -5.55, 121.07, 2, 0)
  39. MovementLoopAddLocation(NPC, 542.06, -3.5, 128.03, 2, 0)
  40. MovementLoopAddLocation(NPC, 527.66, -3.5, 128.38, 2, 0)
  41. MovementLoopAddLocation(NPC, 511.79, -3.48, 125.96, 2, 0)
  42. MovementLoopAddLocation(NPC, 510.52, -3.48, 134.38, 2, 0)
  43. MovementLoopAddLocation(NPC, 526.93, -3.5, 136.14, 2, 0)
  44. MovementLoopAddLocation(NPC, 541.45, -3.5, 136.91, 2, 0)
  45. end