mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
* Grim's Revenge: rewrote on how the trigger works to spawn the tigers. added some faction trigger dialogs. * Neriak Common and Solusek Eye: the triple doors will now open all at once when clicked on. * Shutters is now implemented for Butcher <-> Timorous (chazix) Elroz * Removed class requirement for raincaller quest, so any class can do the ranger bow. It just requires high enough faction with the ranger guildmaster in kelethin. * various fixes and adjustments.
16 lines
No EOL
697 B
Lua
16 lines
No EOL
697 B
Lua
function event_say(e)
|
|
if(e.message:findi("hail")) then
|
|
e.self:Say("Nice to meet you, " .. e.other:GetCleanName() .. ". If you are a fellow bard. I must inform you that you will make no profit around here. Not with Guard McCluskey around.");
|
|
elseif(e.message:findi("Guard McCluskey")) then
|
|
e.self:Say("I will tell you no more. I do not wish to end up boxed and buried. Just stay away from Guard McCluskey. He is no honorable man.");
|
|
end
|
|
end
|
|
|
|
function event_signal(e)
|
|
if(e.signal == 1) then
|
|
e.self:Say("This cannot be true! I will report this to Commander Kane Bayle himself!");
|
|
eq.signal(12090,2); -- Guard_McCluskey
|
|
end
|
|
end
|
|
|
|
-- END of FILE Zone:qey2hh1 ID:3574 -- Misty_Storyswapper |