1234567891011121314151617181920212223 |
- --[[
- Script Name : SpawnScripts/IsleRefuge1/ebiksclunker.lua
- Script Author : Dorbin
- Script Date : 2022.09.04 07:09:23
- Script Purpose :
- :
- --]]
- local EbiksMissingParts = 5755
- function spawn(NPC)
- SetRequiredQuest(NPC, EbiksMissingParts, 1)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function casted_on(NPC, Spawn, Message)
- if Message == "search parts" then
- SetStepComplete(Spawn, EbiksMissingParts, 1)
- end
- end
|