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