eqmac-quests/trakanon/a_human_skeleton.lua
2023-07-24 13:24:37 -07:00

21 lines
869 B
Lua

-- Quest: Brain Bite (Concussion)
function event_say(e)
if(e.message:findi("Hail")) then
e.self:Say("Save my.. Soul.. Find.. Wizard.. Desp..");
end
end
function event_trade(e)
local item_lib = require("items");
-- Hand in Hampton's Bottle
if(item_lib.check_turn_in(e.self, e.trade, {item1 = 12962})) then
e.other:QuestReward(e.self,0,0,0,0,12965); -- Bottle of swirling smoke (Hampton's soul)
eq.depop_with_timer();
end
item_lib.return_items(e.self, e.other, e.trade)
end
-------------------------------------------------------------------------------------------------
-- 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
-------------------------------------------------------------------------------------------------