mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
fixed an issue with cubes in Skyshrine. removed emote scripts for Julius_Oresko.lua since it's added to database.
24 lines
923 B
Lua
24 lines
923 B
Lua
-- Warlord Skargus, Frontier Mountains
|
|
-- Second part of the chardok quest, initiated by Herald Telcha
|
|
-- Regal Band of Bathezid
|
|
-- global RegalBandBathezid, needed to be sure players won't jump to the last part of the quest
|
|
-- at 1 : you gave the Signet of Service to the goblin traitor
|
|
function event_spawn(e)
|
|
eq.set_timer("depop",600000);
|
|
end
|
|
|
|
function event_timer(e)
|
|
if(e.timer == "depop") then
|
|
eq.depop();
|
|
end
|
|
end
|
|
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
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
|
|
-------------------------------------------------------------------------------------------------
|