mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
355 B
Lua
Executable file
16 lines
355 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/lockedhandcuffs.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2022.07.24 02:07:16
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local OrcishManacles = 5698
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, OrcishManacles) then
|
|
OfferQuest(nil, Player, OrcishManacles)
|
|
end
|
|
end
|
|
|