Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Rineval_Talyas.lua - Quest File
General Info
Quest File
-- items: 19071, 19070, 1000, 18302 function event_say(e) if(e.message:findi("hail")) then e.self:Say(string.format("hello, %s",e.other:GetName())); elseif(e.message:findi("scribe")) then e.self:Emote(string.format("looks at %s strangely. 'Who told you this?'",e.other:GetName())); elseif(e.message:findi("Karn")) then e.self:Say("'I see. If a scribe is what you seek, then bring me the torn books of fire and ice. A donation of 1000 platinum is needed as well. The donation will be offered as a blessing to the gods."); end end function event_trade(e) local item_lib = require("items"); if(item_lib.check_turn_in(e.trade, {item1 = 19071,item2 = 19070, platinum = 1000})) then e.other:SummonItem(18302); -- Item: Book of Scale e.other:Ding(); end item_lib.return_items(e.self, e.other, e.trade) end
Source: 17 Jan 2022
Quest Source: 28 May 2022