ebiksspringer.lua 480 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ebiksspringer.lua
  3. Script Purpose : <purpose>
  4. Script Author : Jabantiz
  5. Script Date : 9/13/2016
  6. Script Notes : <special-instructions>
  7. --]]
  8. local EbiksMissingParts = 185
  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