Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Kinloc_Flamepaw.lua - Quest File
General Info
Quest File
-- items: 18719, 13543 function event_spawn(e) local xloc = e.self:GetX(); local yloc = e.self:GetY(); eq.set_proximity(xloc - 50, xloc + 50, yloc - 50, yloc + 50); end function event_enter(e) if(e.other:HasItem(18719) == true) then e.other:Message(15,"As you glance about the crowded room, Kinloc Flamepaw greets you. 'Why hello there. Are you perhaps a new recruits? If you wish to learn the ways of the Magician, read the note in your inventory and hand me your note to start your training.'"); end end function event_trade(e) local item_lib =require("items"); if(item_lib.check_turn_in(e.trade, {item1 = 18719})) then -- Tattered Note e.self:Say("Welcome to the Order of Three. I am Kinloc, Guild Master of the Magicians. This tunic of the Order is for you, wear it with honour. Study hard and master your skills, and you will become an important part of our Order. Yestura shall help introduce you to the ways of magic."); e.other:SummonItem(13543); -- Used Blue Robe* e.other:Ding(); e.other:Faction(342,100,0); -- Order of Three e.other:Faction(221,-25,0); -- Bloodsabers e.other:Faction(262,15,0); -- Guards of Qeynos e.other:Faction(296,-15,0); -- Opal Dark Briar e.other:AddEXP(100); end item_lib.return_items(e.self, e.other, e.trade) end
Source: 17 Jan 2022
Quest Source: 28 May 2022