AntoniaBayle.lua 458 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/thunderdome/AntoniaBayle.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.25 12:05:36
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/ClassSkillCheckNew.lua")
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC,Spawn)
  12. changeSkills(NPC, Spawn)
  13. FaceTarget(NPC,Spawn)
  14. PlayFlavor(NPC,"","Done","nod",0,0,Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end