-
this is what i have ....
init start
local raids = {
libertybay = {}, -- lb raids
farmine = {'A massive orc force is gathering', 'Orc reinforcements', 'An orcish horde, ready for', 'The great march'}, -- farmine raids
bosses = {'Orshabaal is about to make his way into the mortal realm. Run for your lives!','The ancient volcano on Goroma', 'There is an evil presence', 'Evil Cultists have called an ancient evil', 'The seals on Ferumbras old cidatel are glowing', 'Ferumbras return is at hand.', 'Ferumbras has returned to his citadel once', 'An ancient evil is awakening in the mines beneath Hrodmir.', 'Demonic entities are entering', 'The demonic master has revealed itself', 'The Pale Count has risen from his crypt deep under Drefia. Blood will flow'} -- bosses raids
}
local beeptimes = 100 -- how many times play alarm
-- Don't edit below :)
table.lower(raids)
init end
auto(10)
foreach newmessage m do
if m.type == MSG_RAID then
for _, v in pairs(raids) do
for k, vv in ipairs(v) do
if m.content:lower():find(vv:lower()) then
for i = 1, beeptimes do
beep() wait(45, 82)
end
end
end
end
end
end
why does it not beep 100 times like i put it too???
-
I need HELP
This is what i have...
init start
local raids = {
libertybay = {}, -- lb raids
farmine = {'A massive orc force is gathering', 'Orc reinforcements', 'An orcish horde, ready for', 'The great march'}, -- farmine raids
bosses = {'Orshabaal is about to make his way into the mortal realm. Run for your lives!','The ancient volcano on Goroma', 'There is an evil presence', 'Evil Cultists have called an ancient evil', 'The seals on Ferumbras old cidatel are glowing', 'Ferumbras return is at hand.', 'Ferumbras has returned to his citadel once', 'An ancient evil is awakening in the mines beneath Hrodmir.', 'Demonic entities are entering', 'The demonic master has revealed itself', 'The Pale Count has risen from his crypt deep under Drefia. Blood will flow'} -- bosses raids
}
local beeptimes = 100 -- how many times play alarm
-- Don't edit below :)
table.lower(raids)
init end
auto(10)
foreach newmessage m do
if m.type == MSG_RAID then
for _, v in pairs(raids) do
for k, vv in ipairs(v) do
if m.content:lower():find(vv:lower()) then
for i = 1, beeptimes do
beep() wait(45, 82)
end
end
end
end
end
end
why does it not beep 100 times?
-
try making bigger waits, change wait(45, 82) to wait(1000)
-
-
-
-
Quote:
Originally Posted by
Jorlalo
Orshabaal boss raid ???
You can Add Orshabaal raid too
-
Quote:
Originally Posted by
Jorlalo
Orshabaal boss raid ???
bosses = {'The ancient volcano on Goroma', 'There is an evil presence', 'Evil Cultists have called an ancient evil', 'The seals on Ferumbras old cidatel are glowing', 'Ferumbras return is at hand.', 'Ferumbras has returned to his citadel once', 'An ancient evil is awakening in the mines beneath Hrodmir.', 'Demonic entities are entering', 'The demonic master has revealed itself', 'minions are working on his return to the World. LEAVE Edron at once, mortals.', 'old citadel are glowing. Prepare for HIS return, mortals.',' Orshabaals minions are working on his return to the World. LEAVE Edron at once, mortals.'}, -- bosses raids
fixed for you