EQ2EMu/server/ItemScripts/FabricPatch.lua
Image 548007ea96 Base
Starting point..!
2020-02-28 09:17:24 -05:00

20 lines
No EOL
497 B
Lua

--[[
Script Name : ItemScripts/FabricPatch.lua
Script Purpose : Offers and updates the language quest, "The Patchwork Tapestry"
Script Author : Scatman
Script Date : 2009.10.08
Script Notes :
--]]
local LANGUAGE_QUEST = 299
function examined(Item, Player)
if not HasQuest(Player, LANGUAGE_QUEST) and not HasCompletedQuest(Player, LANGUAGE_QUEST) then
OfferQuest(nil, Player, LANGUAGE_QUEST)
-- Fabric Patch
if HasItem(Player, 6079) then
RemoveItem(Player, 6079)
end
end
end