TransportTreeLift.lua 403 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. -- AddTransportSpawn(NPC)
  10. -- AddTimer(NPC, 15, "UseLift")
  11. AddMultiFloorLift(NPC)
  12. end
  13. function respawn(NPC)
  14. spawn(NPC)
  15. end
  16. function UseLift(NPC)
  17. UseWidget(NPC)
  18. AddTimer(NPC, 15, "UseLift")
  19. end