aGruttoothinvader6.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/aGruttoothinvader6.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.09.05 05:09:45
  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.91, -3.34, 145.55, 2, 0)
  20. MovementLoopAddLocation(NPC, 214.71, -3.3, 142.35, 2, 0)
  21. MovementLoopAddLocation(NPC, 211.47, -3.36, 142.4, 2, 0)
  22. MovementLoopAddLocation(NPC, 204.83, -3.29, 144.21, 2, 0)
  23. MovementLoopAddLocation(NPC, 190.57, -3.2, 149.64, 2, 0)
  24. MovementLoopAddLocation(NPC, 184.06, -3.2, 153.49, 2, 0)
  25. MovementLoopAddLocation(NPC, 176.97, -3.2, 159.37, 4, 0)
  26. MovementLoopAddLocation(NPC, 164.66, -3.27, 163.15, 4, 0)
  27. MovementLoopAddLocation(NPC, 150.25, -3.48, 159.15, 4, 0)
  28. MovementLoopAddLocation(NPC, 140.3, -3.7, 163.39, 4, 0)
  29. MovementLoopAddLocation(NPC, 121.3, -3.8, 164.48, 4, 0)
  30. MovementLoopAddLocation(NPC, 91.6, -4.43, 171.83, 4, 0)
  31. MovementLoopAddLocation(NPC, 78.94, -4.33, 180.22, 4, 0)
  32. MovementLoopAddLocation(NPC, 71.12, -4.49, 177.39, 4, 0)
  33. MovementLoopAddLocation(NPC, 71.15, -4.3, 171.71, 4, 0)
  34. MovementLoopAddLocation(NPC, 71.12, -4.49, 177.39, 4, 0)
  35. MovementLoopAddLocation(NPC, 71.15, -4.3, 171.71, 4, 0)
  36. MovementLoopAddLocation(NPC, 71.12, -4.49, 177.39, 4, 0)
  37. MovementLoopAddLocation(NPC, 71.15, -4.3, 171.71, 4, 300)
  38. end