mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
11 lines
615 B
Lua
11 lines
615 B
Lua
-- items: 1693
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
|
|
if(item_lib.check_turn_in(e.trade, {item1 = 1693})) 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(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
|