GruttoothInvader5.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/GruttoothInvader5.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.05 02:09:57
  5. Script Purpose :
  6. :
  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, 172.77, -3.4, 169.95, 4, 2)
  19. MovementLoopAddLocation(NPC, 144.38, -3.5, 170.94, 4, 0)
  20. MovementLoopAddLocation(NPC, 133.42, -3.7, 165.75, 4, 0)
  21. MovementLoopAddLocation(NPC, 117.94, -3.8, 165.29, 4, 0)
  22. MovementLoopAddLocation(NPC, 105.02, -4, 169.56, 4, 0)
  23. MovementLoopAddLocation(NPC, 93.77, -4.25, 169.18, 4, 0)
  24. MovementLoopAddLocation(NPC, 84.66, -4.36, 165.45, 4, 0)
  25. MovementLoopAddLocation(NPC, 81.08, -4.36, 159.06, 4, 0)
  26. MovementLoopAddLocation(NPC, 73.96, -4.36, 159.11, 4, 0)
  27. MovementLoopAddLocation(NPC, 70.23, -4.3, 159.54, 2, 5)
  28. MovementLoopAddLocation(NPC, 70.85, -4.31, 162.16, 2, 0)
  29. MovementLoopAddLocation(NPC, 70.23, -4.3, 159.54, 2, 5)
  30. MovementLoopAddLocation(NPC, 70.85, -4.31, 162.16, 2, 0)
  31. MovementLoopAddLocation(NPC, 70.23, -4.3, 159.54, 2, 5)
  32. MovementLoopAddLocation(NPC, 70.85, -4.31, 162.16, 2, 300)
  33. end