mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
365 B
Lua
Executable file
15 lines
365 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/grossreport.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.10.29 09:10:38
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local GrossReport = 5381 -- Gross Report Quest
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, GrossReport) then
|
|
OfferQuest(nil, Player, GrossReport)
|
|
end
|
|
end
|