1234567891011121314151617181920 |
- --[[
- Script Name : SpawnScripts/TheGraveyard_Classic/anundeadknightHeroic.lua
- Script Author : LordPazuzu
- Script Date : 2023.08.14 05:08:04
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- SpawnSet(NPC, "heroic", 1)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|