12345678910111213141516171819202122232425262728293031 |
- --[[
- Script Name : SpawnScripts/PeatBog/qstambushbook2.lua
- Script Author : Shatou
- Script Date : 2020.01.08 08:01:31
- Script Purpose :
- :
- --]]
- local AMBUSHED_QUEST_ID = 509
- function spawn(NPC)
- SetRequiredQuest(NPC, AMBUSHED_QUEST_ID, 1, 1,0,0)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- end
- function respawn(NPC)
- end
- function casted_on(NPC, Spawn, Message)
- if HasQuest(Spawn, AMBUSHED_QUEST_ID) then
- if Message == "inspect" then
- SetStepComplete(Spawn, AMBUSHED_QUEST_ID, 1)
- end
- end
- end
|