eqmac-quests/crushbone/orc_taskmaster.lua
2023-07-24 13:24:37 -07:00

12 lines
No EOL
330 B
Lua

function event_combat(e)
if(e.joined) then
random_say = math.random(100);
if(random_say <= 30) then
e.self:Say("Death!! Death to all who oppose the Crushbone orcs!!");
elseif(random_say <= 65) then
e.self:Say("Hail, Emperor Crush!!");
else
e.self:Say("Fall before the might of Clan Crushbone!!");
end
end
end