ebiksspringer.lua 479 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/IsleRefuge1/ebiksspringer.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.04 07:09:03
  5. Script Purpose :
  6. :
  7. --]]
  8. local EbiksMissingParts = 5755
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, EbiksMissingParts, 2)
  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, 2)
  18. end
  19. end