ebiksspinner.lua 482 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ebiksspinner.lua
  3. Script Author : Jabantiz
  4. Script Date : 2016.09.13 12:09:46
  5. Script Purpose :
  6. :
  7. --]]
  8. local EbiksMissingParts = 185
  9. function spawn(NPC)
  10. SetRequiredQuest(NPC, EbiksMissingParts, 3)
  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, 3)
  18. end
  19. end