TunaresSaplingAcornLift.lua 435 B

123456789101112131415161718192021
  1. --[[
  2. Script Name : SpawnScripts/GreaterFaydark/TunaresSaplingAcornLift.lua
  3. Script Purpose : Automate the Kelethin lifts
  4. Script Author : Jabantiz
  5. Script Date : 5/29/2018
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. AddTransportSpawn(NPC)
  10. AddTimer(NPC, 35000, "UseLift")
  11. end
  12. function respawn(NPC)
  13. spawn(NPC)
  14. end
  15. function UseLift(NPC)
  16. UseWidget(NPC)
  17. AddTimer(NPC, 35000, "UseLift")
  18. end