mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
No EOL
385 B
Lua
Executable file
16 lines
No EOL
385 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/CrackedHalflingSkull.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.07.11 10:07:52
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local TheBrokenHalflingSkull = 5312
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, TheBrokenHalflingSkull) then
|
|
OfferQuest(nil, Player, TheBrokenHalflingSkull)
|
|
end
|
|
end
|
|
|