123456789101112131415161718192021 |
- --[[
- Script Name : SpawnScripts/Antonica/aSabertoothmongrel.lua
- Script Author : LordPazuzu
- Script Date : 2023.03.24 12:03:13
- Script Purpose :
- :
- --]]
- dofile("SpawnScripts/Generic/MonsterCallouts/SabertoothGnoll1.lua")
- require "SpawnScripts/Generic/NPCModule"
- function spawn(NPC, Spawn)
- NPCModule(NPC, Spawn)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|