1234567891011121314151617181920212223 |
- --[[
- Script Name : <script-name>
- Script Purpose : <purpose>
- Script Author : <author-name>
- Script Date : <date>
- Script Notes : <special-instructions>
- --]]
- function spawn(NPC)
- end
- function hailed(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function casted_on(Target, Caster)
- if not HasCompletedQuest(Caster, 84) and not HasQuest(Caster, 84) then
- OfferQuest(Target, Caster, 84)
- end
- end
|