AquaticResearchNotebook.lua 589 B

123456789101112131415161718
  1. --[[
  2. Script Name : ItemScripts/AquaticResearchNotebook.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.09.25 06:09:58
  5. Script Purpose :
  6. :
  7. --]]
  8. function examined(Item, Player)
  9. local zone = GetZone(Player)
  10. if GetZoneID(zone)~= 325 then
  11. SendMessage(Player, "The notebook is a research manual for aquatic creatures living on the Isle of Refuge. It won't do you any good now that you have left the isle.")
  12. else
  13. if not HasQuest(Player,5757) and not HasCompletedQuest(Player, 5757) then
  14. OfferQuest(nil,Player,5757)
  15. end
  16. end
  17. end