123456789101112131415161718192021222324 |
- --[[
- Script Name : <script-name>
- Script Purpose : <purpose>
- Script Author : <author-name>
- Script Date : <date>
- Script Notes : <special-instructions>
- --]]
- function spawn(NPC)
- SetRequiredQuest(NPC, 127, 1)
- end
- function hailed(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function casted_on(Target, Caster)
- if HasQuest(Caster, 127) and GetQuestStep(Caster, 127) == 1 then
- SetStepComplete(Caster, 127, 1)
- end
- end
|