1234567891011121314151617181920212223242526272829 |
- --[[
- Script Name : SpawnScripts/SunkenCity/widgetbox2.lua
- Script Author : torsten
- Script Date : 2022.07.16 04:07:11
- Script Purpose :
- :
- --]]
- local LukursAntiques = 374
- function casted_on(NPC, Spawn, SpellName)
- if SpellName == 'Search' then
- if GetQuestStep(Spawn, LukursAntiques) == 1 then --BloodMask
- SetStepComplete(Spawn, LukursAntiques, 1)
- end
- end
- end
- function spawn(NPC)
- SetRequiredQuest(NPC, LukursAntiques, 1)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
|