zonetofallengateepic01boss.lua 558 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/FallenGate/zonetofallengateepic01boss.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.19 09:07:37
  5. Script Purpose :
  6. :
  7. --]]
  8. local SearchingtheDepthsofFallenGate = 5307
  9. function spawn(NPC)
  10. end
  11. function can_use_command(NPC, Spawn, Command)
  12. if HasCompletedQuest(Spawn, SearchingtheDepthsofFallenGate) then
  13. return true
  14. elseif not HasCompletedQuest(Spawn, SearchingtheDepthsofFallenGate) then
  15. return false
  16. end
  17. end
  18. function respawn(NPC)
  19. spawn(NPC)
  20. end