LiegeJustusCnaeus.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/Freeport/LiegeJustusCnaeus.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.19 10:07:08
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
  9. function spawn(NPC)
  10. MovementLoopAddLocation(NPC, -90.88, -30.21, 87.42, 2, 0)
  11. MovementLoopAddLocation(NPC, -134.00, -38.82, 88.17, 2, 0)
  12. MovementLoopAddLocation(NPC, -154.09, -43.23, 75.62, 2, 0)
  13. MovementLoopAddLocation(NPC, -159.36, -46.23, 51.14, 2, 0)
  14. MovementLoopAddLocation(NPC, -156.04, -50.03, 2.83, 2, 0)
  15. MovementLoopAddLocation(NPC, -171.91, -54.16, -17.22, 2, 0)
  16. MovementLoopAddLocation(NPC, -179.76, -55.48, -17.56, 2, 10)
  17. MovementLoopAddLocation(NPC, -179.76, -55.48, -17.56, 2, 0)
  18. MovementLoopAddLocation(NPC, -171.91, -54.16, -17.22, 2, 0)
  19. MovementLoopAddLocation(NPC, -156.04, -50.03, 2.83, 2, 0)
  20. MovementLoopAddLocation(NPC, -159.36, -46.23, 51.14, 2, 0)
  21. MovementLoopAddLocation(NPC, -154.09, -43.23, 75.62, 2, 0)
  22. MovementLoopAddLocation(NPC, -134.00, -38.82, 88.17, 2, 0)
  23. MovementLoopAddLocation(NPC, -90.88, -30.21, 87.42, 2, 0)
  24. MovementLoopAddLocation(NPC, -63.57, -23.65, 80.48, 2, 10)
  25. MovementLoopAddLocation(NPC, -63.57, -23.65, 80.48, 2, 0)
  26. end
  27. function hailed(NPC, Spawn)
  28. FaceTarget(NPC, Spawn)
  29. GenericGuardHail(NPC, Spawn, Faction)
  30. end
  31. function respawn(NPC)
  32. spawn(NPC)
  33. end