Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
Atheling_Plague.lua - Quest File
General Info
Quest File
--Shaman Skull Quest 6 -- items: 12764 function event_say(e) if(e.other:HasItem(5145)) then if(e.message:findi("hail")) then e.self:Say("Ahh!! A conversationalist. How good to meet you, " .. e.other:GetCleanName() .. ". Yes. I have heard of you. Go ahead and ask for that which has brought you to my tower and emboldened you to slay my weaker minions."); elseif(e.message:findi("sisters of scale")) then e.self:Say("What a coincidence! I, too, seek a skull. Perhaps you might help me [obtain the skull]. Perhaps then you shall have the skull you desire."); elseif(e.message:findi("obtain the skull")) then e.self:Say("I am sure you would not mind removing the head of a scaled mystic. I hope not. There is an old Iksar who once called me slave. Now he shall adorn my wall, mounted on a fine plaque. His name is Digalis. Find him. Do not return until your task is complete."); end end end function event_trade(e) local item_lib = require("items"); if(e.other:HasItem(5145)) then if(item_lib.check_turn_in(e.trade, {item1 = 12764})) then e.other:QuestReward(e.self,0,0,0,0,12750); e.self:Shout("Excellent. You show signs of a true Iksar slayer. Too, bad I have already given the skull of the Sister of Scale to another. Perhaps you would like to meet him before he departs. Say hello, Doval."); eq.unique_spawn(87154,0,0,-4067,6351,-53); eq.set_timer("heal",20000); end end item_lib.return_items(e.self, e.other, e.trade); end function event_timer(e) if(e.timer == "heal") then local el = eq.get_entity_list(); local doval = el:GetNPCByNPCTypeID(87154); if (doval.valid) then e.self:CastSpell(12, doval:GetID()); -- Spell: Healing end end end function event_signal(e) if(e.signal == 1) then eq.stop_timer("heal"); end end function event_death_complete(e) eq.stop_timer("heal"); 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