mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
31 lines
2.8 KiB
Lua
31 lines
2.8 KiB
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Greetings. friend!! I am Lozani. Scribe Supreme of the Eldritch Collective. I have been sent forth from the great Library of Mechanimagica in the city of Ak'Anon. to study the arcane knowledge of man and beast alike. I have studied many languages and spells. from Crushbone to Kerra Ridge. I have found most languages hard to decipher. As of this date. I have learned to read only the script of the [orc oracles]. Oh well. I am on a five decade mission. Better luck next language.");
|
|
elseif(e.message:findi("orc oracles")) then
|
|
e.self:Say("Oh!! Heard of the orc oracles have you? A ghastly bunch they are!! Argh! The numerous days I spent interrogating those beasts with their foul breath. It was as if rats had gone and died in their mouths. I wished I could read minds after those days. TWENTY WEEKS of that rat-carcass breath and all I have learned is the ability to decipher [oracle scrolls] and [apprentice cantrips]. What a mess that was! I'm beginning to think I should have become a Gemchopper.");
|
|
elseif(e.message:findi("oracle scroll")) then
|
|
e.self:Say("Orc oracle scrolls? Mere shaman spells are they. I know how to decipher those illegible scrolls. I can do so, but it will cost you. Nothing is for free in this world, y'know? You give me one of those illegible scrolls and four gold coins.");
|
|
elseif(e.message:findi("apprentice cantrips")) then
|
|
e.self:Say("Orc apprentice cantrips. Child's play they are. Very difficult to decipher, mostly due to the orc sweat smearing the writing. I fill in the blanks with a second orc cantrip and my universe of knowledge, so you never know what spell is going to be scribed! Could be magic, could be wizardry, could be necromancy, golly!! Sometimes I even end up with a recipe!! If you want me to try to decipher one just hand me two illegible cantrips. No coinage necessary!! They are mostly apprentice spells. Nothing much.");
|
|
end
|
|
end
|
|
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
local text1 = "I need TWO illegible cantrips. Not much to ask for.";
|
|
local text2 = "Hey! I said FOUR gold and the illegible scroll! Sheesh.";
|
|
local scroll = 0;
|
|
|
|
if(item_lib.check_turn_in(e.self, e.trade, {item1 = 13225,gold = 4},1,text2)) then -- Illegible Scroll and 4 gold#
|
|
e.self:Say("Hmmm... Aha! Well, I think this is it. A fine spell. I hope you need it because you are not getting your gold back.");
|
|
scroll = 1;
|
|
elseif(item_lib.check_turn_in(e.self, e.trade, {item1 = 13845,item2 = 13845},1,text1)) then -- Illegible Cantrip
|
|
e.self:Say("And the winning spell is... Here, you do the honors.");
|
|
scroll = 1;
|
|
end
|
|
if(scroll == 1) then
|
|
e.other:QuestReward(e.self,0,0,0,0,eq.ChooseRandom(15200, 15042, 15226, 13360, 15246, 15276, 15211, 15203, 15054),100);
|
|
scroll = 0;
|
|
end
|
|
item_lib.return_items(e.self, e.other, e.trade)
|
|
end
|