mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
10 lines
618 B
Lua
10 lines
618 B
Lua
function event_trade(e)
|
|
local item_lib = require("items");
|
|
|
|
if(item_lib.check_turn_in(e.self, e.trade, {item1 = 1693}, 0)) then
|
|
e.self:Emote("seems as if it doesn't recognize you as anything of importance. You attempt to speak with the geonid through your velium focus but all you are able to hear is the same though over and over.., Eat. You have gained no knowledge from these creatures but you notice your focus has been altered slightly.");
|
|
e.other:Faction(e.self,458,10); -- Faction: Geonid Collective
|
|
e.other:QuestReward(e.self,0,0,0,0,1701,0);
|
|
end
|
|
item_lib.return_items(e.self, e.other, e.trade)
|
|
end
|