mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
411 B
Lua
Executable file
16 lines
411 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/aringblank.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.07.14 10:07:24
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local TheAbhorrentRing = 5320
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, TheAbhorrentRing) and not HasCompletedQuest(Player, TheAbhorrentRing) then
|
|
OfferQuest(nil, Player, TheAbhorrentRing)
|
|
end
|
|
end
|
|
|