LucanicKnightInitiate.lua 880 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/LucanicKnightInitiate.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.05.30 07:05:45
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. AddTimer(NPC, 2000, "call", "", Spawn)
  10. SetAggroRadius(NPC, 20)
  11. end
  12. function call(NPC, Spawn)
  13. PlayFlavor(NPC, "voiceover/english/lucanic_knight_initiate/commonlands/quest/019_quest_lucanic_knight_initiate_shoutout_4eabbb23.mp3", "This time there will be no escape! Your kind is extinct and you will join them soon!", "", 135976742, 4023420058, Spawn)
  14. end
  15. function attacked(NPC, Spawn)
  16. PlayFlavor(NPC, "voiceover/english/human_base_1/ft/human/human_base_1_1_aggro_gm_a30c4f9d.mp3", "To Arms!", "", 1238020980, 748146443, Spawn)
  17. end
  18. function hailed(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end