123456789101112131415161718192021222324252627 |
- --[[
- Script Name : SpawnScripts/PeatBog/qst_ambush_site_3.lua
- Script Purpose : Handles quest updates for the third ambush site
- Script Author : Scatman
- Script Date : 2009.05.10
- Script Notes :
- --]]
- local QUEST_3 = 217
- function spawn(NPC)
- --SetRequiredQuest(NPC, QUEST_3, 3)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function hailed(NPC, Spawn)
- end
- function casted_on(Target, Caster)
- if HasQuest(Caster, QUEST_3) and not QuestStepIsComplete(Caster, QUEST_3, 3) then
- SetStepComplete(Caster, QUEST_3, 3)
- --popup dialog box after inspect
- end
- end
|