aGuardlookout.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/FightClub/aGuardlookout.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.10.26 01:10:28
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -5.6, -1.99, -6.4, 2, 22)
  18. MovementLoopAddLocation(NPC, -5.96, -1.99, -6.57, 2, 0)
  19. MovementLoopAddLocation(NPC, -4.9, -1.99, -3.41, 2, 22)
  20. MovementLoopAddLocation(NPC, -3.93, -1.99, -3.43, 2, 0)
  21. MovementLoopAddLocation(NPC, -5.63, -1.99, -4.02, 2, 22)
  22. MovementLoopAddLocation(NPC, -6.12, -1.99, -4.49, 2, 0)
  23. MovementLoopAddLocation(NPC, -5.75, -1.99, -6.59, 2, 22)
  24. MovementLoopAddLocation(NPC, -6.12, -1.99, -4.49, 2, 0)
  25. MovementLoopAddLocation(NPC, -5.63, -1.99, -4.02, 2, 22)
  26. MovementLoopAddLocation(NPC, -3.93, -1.99, -3.43, 2, 0)
  27. MovementLoopAddLocation(NPC, -4.9, -1.99, -3.41, 2, 22)
  28. MovementLoopAddLocation(NPC, -5.96, -1.99, -6.57, 2, 0)
  29. MovementLoopAddLocation(NPC, -5.6, -1.99, -6.4, 2, 22)
  30. end