Kugup.lua 658 B

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : ZoneScripts/Kugup.lua
  3. Script Author : neatz09
  4. Script Date : 2023.12.12 03:12:14
  5. Script Purpose :
  6. :
  7. --]]
  8. Zone = 123
  9. local UncoveringtheFroglokSecret = 5936
  10. function init_zone_script(zone)
  11. end
  12. function player_entry(zone, player)
  13. if not HasQuest(player, UncoveringtheFroglokSecret) and not HasCompletedQuest(player, UncoveringtheFroglokSecret) then
  14. OfferQuest(nil, player, UncoveringtheFroglokSecret)
  15. end
  16. end
  17. function enter_location(zone, spawn, grid)
  18. end
  19. function leave_location(zone, spawn, grid)
  20. end
  21. function dawn(zone)
  22. end
  23. function dusk(zone)
  24. end