Signup Now
Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Alarm Raid's

  1. #11
    Free User
    Join Date
    May 2014
    Posts
    10
    Reputation
    10
    Rep Power
    0
    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???

  2. #12
    Free User
    Join Date
    May 2014
    Posts
    10
    Reputation
    10
    Rep Power
    0
    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?

  3. #13
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    try making bigger waits, change wait(45, 82) to wait(1000)

  4. #14
    Free User
    Join Date
    May 2014
    Posts
    10
    Reputation
    10
    Rep Power
    0
    i will try thanks

  5. #15
    Free User fatima's Avatar
    Join Date
    Jun 2014
    Location
    Brasil - Rio De Janeiro
    Posts
    21
    Reputation
    10
    Rep Power
    0
    up still working good

  6. #16
    Free User
    Join Date
    Aug 2014
    Posts
    4
    Reputation
    10
    Rep Power
    0
    Orshabaal boss raid ???

  7. #17
    Free User fatima's Avatar
    Join Date
    Jun 2014
    Location
    Brasil - Rio De Janeiro
    Posts
    21
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Jorlalo View Post
    Orshabaal boss raid ???
    You can Add Orshabaal raid too

  8. #18
    Free User fatima's Avatar
    Join Date
    Jun 2014
    Location
    Brasil - Rio De Janeiro
    Posts
    21
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Jorlalo View Post
    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

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •