Basher_Alga.lua - Quest File
xxxxxxxxxx
1
--[[
2
3
4
Tutorial Revamp Re-write by Drogerin
5
6
##Color Reference guide##
7
<c \"#83f07a\"> Light Green
8
<c \"#F07F00\"> Dark Orange
9
10
11
--]]
12
13
14
function event_say(e)
15
if (e.message:findi("hail") and eq.is_task_active(290)) then
16
eq.popup("Hotbars & Hotkeys","<br><c \"#83f07a\"> Hotbars </c> are the primary tools for playing Everquest. You can use the <c \"#83f07a\"> Hotkeys </c> assigned to activate different types of abilities, alternate advancement abilities, and custom and pre-defined actions.<br><br><c \"#F07F00\"> Click 'OK' to learn managing your Hotbars.</c>",6,0,0);
17
else
18
e.self:QuestSay(e.other, "Most important part of battle is preperation! Ya gonna get killed out there if ya don't. Dat's the first thing ya need to learn. I can shows you.");
19
eq.task_selector({290});
20
end
21
end
22
23
function event_trade(e)
24
item_lib.return_items(e.self, e.other, e.trade);
25
end
26
Quest Source: 28 May 2022