LucanicKnightMarcusRusonius.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/Freeport/LucanicKnightMarcusRusonius.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.19 10:07:48
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua")
  9. function spawn(NPC)
  10. SetMount(NPC, 16339)
  11. MovementLoopAddLocation(NPC, 33.94, -19.77, 45.84, 7, 0)
  12. MovementLoopAddLocation(NPC, 21.91, -19.97, 55.91, 7, 0)
  13. MovementLoopAddLocation(NPC, -20.13, -19.98, 57.29, 7, 0)
  14. MovementLoopAddLocation(NPC, -38.63, -19.98, 39.42, 7, 0)
  15. MovementLoopAddLocation(NPC, -37.92, -19.96, -5.38, 7, 0)
  16. MovementLoopAddLocation(NPC, -27.03, -19.62, -17.86, 7, 7)
  17. MovementLoopAddLocation(NPC, -37.92, -19.96, -5.38, 7, 0)
  18. MovementLoopAddLocation(NPC, -38.63, -19.98, 39.42, 7, 0)
  19. MovementLoopAddLocation(NPC, -20.13, -19.98, 57.29, 7, 0)
  20. MovementLoopAddLocation(NPC, 21.91, -19.97, 55.91, 7, 0)
  21. MovementLoopAddLocation(NPC, 33.94, -19.77, 45.84, 7, 7)
  22. end
  23. function hailed(NPC, Spawn)
  24. FaceTarget(NPC, Spawn)
  25. GenericGuardHail(NPC, Spawn, Faction)
  26. end
  27. function respawn(NPC)
  28. spawn(NPC)
  29. end