EQ2EMu/server/ItemScripts/achippedaxehead.lua
2022-06-05 13:50:31 -07:00

16 lines
411 B
Lua
Executable file

--[[
Script Name : ItemScripts/achippedaxehead.lua
Script Author : Premierio015
Script Date : 2021.11.01 06:11:05
Script Purpose :
:
--]]
local AnAxeForAllAges = 5388
function examined(Item, Player)
if not HasQuest(Player, AnAxeForAllAges) and not HasCompletedQuest(Player, AnAxeForAllAges) then
OfferQuest(nil, Player, AnAxeForAllAges)
end
end