aGruttoothinvader4.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/aGruttoothinvader4.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.05 05:09:18
  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, 218.1, -3.82, 142.61, 2, 0)
  20. MovementLoopAddLocation(NPC, 215.39, -3.33, 141.86, 2, 0)
  21. MovementLoopAddLocation(NPC, 207.81, -3.3, 142.79, 2, 0)
  22. MovementLoopAddLocation(NPC, 192.7, -3.2, 147.92, 2, 0)
  23. MovementLoopAddLocation(NPC, 186.02, -3.2, 151.78, 2, 0)
  24. MovementLoopAddLocation(NPC, 178.44, -3.2, 158.11, 2, 0)
  25. MovementLoopAddLocation(NPC, 167.36, -3.2, 162.39, 4, 0)
  26. MovementLoopAddLocation(NPC, 149.8, -3.53, 159.31, 4, 0)
  27. MovementLoopAddLocation(NPC, 135.05, -3.7, 162.86, 4, 0)
  28. MovementLoopAddLocation(NPC, 110.67, -4, 167.78, 4, 0)
  29. MovementLoopAddLocation(NPC, 87.07, -4.55, 173.17, 4, 0)
  30. MovementLoopAddLocation(NPC, 79.43, -4.34, 171.82, 4, 0)
  31. MovementLoopAddLocation(NPC, 72.88, -4.3, 171.71, 4, 0)
  32. MovementLoopAddLocation(NPC, 68.66, -4.48, 176.15, 4, 0)
  33. MovementLoopAddLocation(NPC, 72.88, -4.3, 171.71, 4, 0)
  34. MovementLoopAddLocation(NPC, 68.66, -4.48, 176.15, 4, 0)
  35. MovementLoopAddLocation(NPC, 72.88, -4.3, 171.71, 4, 0)
  36. MovementLoopAddLocation(NPC, 68.66, -4.48, 176.15, 4, 300)
  37. end