mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
376 B
Lua
Executable file
16 lines
376 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/afilthybronzekey.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2022.07.29 09:07:27
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local AFilthybronzekey = 5707 -- quest ID
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, AFilthybronzekey) then
|
|
OfferQuest(nil, Player, AFilthybronzekey)
|
|
end
|
|
end
|
|
|