15 lines
394 B
Lua
Executable file
15 lines
394 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/anoldkey.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.07.16 03:07:29
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local TheSewerItKey = 5321
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, TheSewerItKey) and not HasCompletedQuest(Player, TheSewerItKey) then
|
|
OfferQuest(nil, Player, TheSewerItKey)
|
|
end
|
|
end
|