aringblank.lua 411 B

12345678910111213141516
  1. --[[
  2. Script Name : ItemScripts/aringblank.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.07.14 10:07:24
  5. Script Purpose :
  6. :
  7. --]]
  8. local TheAbhorrentRing = 5320
  9. function examined(Item, Player)
  10. if not HasQuest(Player, TheAbhorrentRing) and not HasCompletedQuest(Player, TheAbhorrentRing) then
  11. OfferQuest(nil, Player, TheAbhorrentRing)
  12. end
  13. end