ebiksclunker.lua 482 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/ebiksclunker.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.04 07:09:23
  5. Script Purpose :
  6. :
  7. --]]
  8. local EbiksMissingParts = 5755
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, EbiksMissingParts, 1)
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function casted_on(NPC, Spawn, Message)
  16. if Message == "search parts" then
  17. SetStepComplete(Spawn, EbiksMissingParts, 1)
  18. end
  19. end