aGruttoothinvader5.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/aGruttoothinvader5.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.05 05:09:29
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGoblin1.lua")
  9. function spawn(NPC)
  10. waypoints(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 216.8, -3.3, 143.91, 2, 0)
  20. MovementLoopAddLocation(NPC, 213.26, -3.3, 141.76, 2, 0)
  21. MovementLoopAddLocation(NPC, 203.19, -3.29, 144.38, 2, 0)
  22. MovementLoopAddLocation(NPC, 188.49, -3.2, 149.91, 2, 0)
  23. MovementLoopAddLocation(NPC, 178.15, -3.2, 158.89, 2, 0)
  24. MovementLoopAddLocation(NPC, 167.44, -3.2, 163.18, 2, 0)
  25. MovementLoopAddLocation(NPC, 150.27, -3.49, 158.77, 4, 0)
  26. MovementLoopAddLocation(NPC, 137.34, -3.7, 162.69, 4, 0)
  27. MovementLoopAddLocation(NPC, 121.06, -3.8, 164.5, 4, 0)
  28. MovementLoopAddLocation(NPC, 85.98, -4.55, 173.54, 4, 0)
  29. MovementLoopAddLocation(NPC, 78.25, -4.32, 179.23, 4, 0)
  30. MovementLoopAddLocation(NPC, 70.73, -4.49, 176.93, 4, 0)
  31. MovementLoopAddLocation(NPC, 69.94, -4.29, 171.42, 4, 0)
  32. MovementLoopAddLocation(NPC, 70.73, -4.49, 176.93, 4, 0)
  33. MovementLoopAddLocation(NPC, 69.94, -4.29, 171.42, 4, 0)
  34. MovementLoopAddLocation(NPC, 70.73, -4.49, 176.93, 4, 0)
  35. MovementLoopAddLocation(NPC, 69.94, -4.29, 171.42, 4, 300)
  36. end