eqmod-proxeeus-quests/halas/Margyn_McCann.lua

78 lines
5.1 KiB
Lua

--18761
function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("Hail, young adventurer! I'm the chief overseer o' the Shamans o' Justice. We serve the will o' the Tribunal. Justice is our way. Within Halas, there are none who are above the scales o' justice. There are still some who have defied our laws. We wish to [apprehend the fugitives].");
elseif(e.message:findi("apprehend the fugitives")) then
e.self:Say("Maybe so, however, there are some who may be too much fer ye to handle. I'll need to know if ye're a [young shaman] or a [standin' member of the court].");
elseif(e.message:findi("young shaman")) then
e.self:Say("We seek a former member who dared to curse the righteousness of the Tribunal. We'll have his head for that remark. His name is Granin O'Gill and he has run to the wastelands of Everfrost seeking safe haven. Find him. Return his head to me. Do so, and earn the ninth circle spell, Spirit o' the Bear. Go at once!");
elseif(e.message:findi("trades")) then
e.self:Say("I thought you might be one who was interested in the various different trades, but which one would suit you? Ahh, alas, it would be better to let you decide for yourself, perhaps you would even like to master them all! That would be quite a feat. Well, lets not get ahead of ourselves, here, take this book. When you have finished reading it, ask me for the [second book], and I shall give it to you. Inside them you will find the most basic recipes for each trade. These recipes are typically used as a base for more advanced crafting, for instance, if you wished to be a smith, one would need to find some ore and smelt it into something usable. Good luck!");
e.other:SummonItem(51121);
elseif(e.message:findi("second book")) then
e.self:Say("Here is the second volume of the book you requested, may it serve you well!");
e.other:SummonItem(51122);
end
end
function event_trade(e)
local item_lib = require("items");
if(item_lib.check_turn_in(e.trade, {item1 = 13729})) then --Barbarian Head
e.self:Say("We can now rest assured that justice has been served. Ye'll be a valuable asset to our court.");
e.other:AddEXP(1600);
e.other:Ding();
e.other:GiveCash(math.random(99),math.random(99),eq.ChooseRandom(3,4,5),0);
e.other:Faction(328,2); --Merchants of Halas
e.other:Faction(327,2); --Shamen of Justice
e.other:Faction(223,-3); --Circle of Unseen Hands
e.other:Faction(336,-3); --Coalition of Tradefolk Underground
e.other:Faction(5008,-3); --Hall of the Ebon Mask
-- : Drowsy : Frost Rift : Sicken : Fleting Fury : Spirit of Bear : Cure Blindness : Spirit Sight : In that order
local spellreward = eq.ChooseRandom(15270,15275,15075,15271,15279,15212,15079);
local dialog0;
local dialog1 = "Drowsy ";
local dialog2 = "Frost Rift";
local dialog3 = "Sicken";
local dialog4 = "Fleeting Fury";
local dialog5 = "Spirit o' the Bear"; --check dialog with alla or live
local dialog6 = "Cure Blindness";
local dialog7 = "Spirit Sight";
if(spellreward == 15270) then
dialog0 = dialog1;
elseif(spellreward == 15275) then
dialog0 = dialog2;
elseif(spellreward == 15075) then
dialog0 = dialog3;
elseif(spellreward == 15271) then
dialog0 = dialog4;
elseif(spellreward == 15279) then
dialog0 = dialog5;
elseif(spellreward == 15212) then
dialog0 = dialog6;
elseif(spellreward == 15079) then
dialog0 = dialog7;
end
e.self:Say("Take and remember this spell, " .. dialog0 .. ", I hope ye've attained the necessary skills to scribe it. If not, I'm sure ye soon will. Go now, and serve justice.");
e.other:SummonItem(spellreward);
elseif(item_lib.check_turn_in(e.trade, {item1 = 18761})) then
e.self:Say("Welcome t' the Church o' the Tribunal. Here, we practice the will o' the Six Hammers. This is our guild tunic - wear it with pride and represent us well. Once you are ready to begin adventuring please see Jinkus Felligan, he can help you with tasks geared towards your development as a great Shaman. Return to me when you have become more experienced in our art, I will be able to further instruct you on how to progress through your early ranks, as well as in some of the various [trades] you will have available to you.");
e.other:Ding();
e.other:Faction(327, 100); -- Shamen of Justice
e.other:Faction(328, 15); -- Merchants of Halas
e.other:Faction(223, -15); -- Circle of Unseen Hands
e.other:Faction(336, -15); -- Coalition of Tradefolk Underground
e.other:Faction(244, -20); -- Ebon Mask
e.other:SummonItem(13512); -- Faded Blue Tunic
e.other:AddEXP(100); -- Give exp for turning in quest
end
item_lib.return_items(e.self, e.other, e.trade)
end
-- modified by Speedz, edited by Robregen for PEQ
-------------------------------------------------------------------------------------------------
-- Converted to .lua using MATLAB converter written by Stryd and manual edits by Speedz
-- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen
-------------------------------------------------------------------------------------------------