aGruttoothprotector.P5lua 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/aGruttoothprotector.P5lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.20 03:09:33
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGoblin2.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. waypoints(NPC)
  13. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -95.34, -9.04, -39.9, 2, 0)
  19. MovementLoopAddLocation(NPC, -95.99, -7.1, -44.11, 2, 0)
  20. MovementLoopAddLocation(NPC, -97.41, -2.69, -51.65, 2, 0)
  21. MovementLoopAddLocation(NPC, -95.81, 1.94, -59.99, 2, 0)
  22. MovementLoopAddLocation(NPC, -95.3, 4.61, -64.59, 2, 0)
  23. MovementLoopAddLocation(NPC, -94.4, 5.46, -67.64, 2, 0)
  24. MovementLoopAddLocation(NPC, -94.11, 5.45, -68.67, 2, 22)
  25. MovementLoopAddLocation(NPC, -93.54, 5.45, -67.98, 2, 0)
  26. MovementLoopAddLocation(NPC, -94.07, 2.72, -61.42, 2, 0)
  27. MovementLoopAddLocation(NPC, -94.68, -0.72, -55.45, 2, 0)
  28. MovementLoopAddLocation(NPC, -94.89, -3.78, -49.48, 2, 0)
  29. MovementLoopAddLocation(NPC, -95.08, -8, -42.37, 2, 0)
  30. MovementLoopAddLocation(NPC, -94.86, -9.04, -38.61, 2, 22)
  31. MovementLoopAddLocation(NPC, -94.7, -9.03, -37.61, 2, 0)
  32. MovementLoopAddLocation(NPC, -95.94, -8.99, -37.46, 2, 0)
  33. end