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