Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Durkis_Battlemore.lua - Quest File
General Info
Quest File
-- items: 8910, 8909 function event_say(e) if(e.message:findi("Hail")) then e.self:Say("Hail, " .. e.other:GetName() .. "."); --Text made up end end function event_trade(e) local item_lib = require("items"); if(item_lib.check_turn_in(e.trade, {item1 = 8910})) then --A Note to Battlemore e.self:Say("What have ye got there, lad? Ack. I thought I would never hear from that crazy old man again. He wants me to give you a pair o' me gauntlets. I suppose I kin do that. Here you are, " .. e.other:GetName() .. " . Wear them in good health."); e.other:Ding(); e.other:SummonItem(8909); --Gem Inlaid Gauntlets e.other:AddEXP(16000); end item_lib.return_items(e.self, e.other, e.trade) end ------------------------------------------------------------------------------------------------- -- Converted to .lua using MATLAB converter written by Stryd -- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen -------------------------------------------------------------------------------------------------
Source: 17 Jan 2022
Quest Source: 28 May 2022