Signup Now
Results 1 to 6 of 6
  1. #1
    Free User
    Join Date
    Aug 2014
    Posts
    37
    Reputation
    10
    Rep Power
    0

    Mastermind Potion

    Hello I need a persistent for my character use a Matermind potion at main backpack. I dont know if is a persistent or hotkey. Please help i need it

  2. #2
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by Voiiz View Post
    Hello I need a persistent for my character use a Matermind potion at main backpack. I dont know if is a persistent or hotkey. Please help i need it
    all vocations

    auto(TimeCheck*1000)

    local UsePotions = true
    local HuntSections = {'Hunt'} --{'Hunt'} or {'Floo 1', 'Floor 2'}
    local TimeCheck = 60 --seconds

    if $connected then
    if UsePotions then
    if table.find(HuntSections, $wptsection) then
    if table.find({'druid', 'sorcerer'}, $vocation) then
    if itemcount('mastermind potion') > 0 then
    useitem('mastermind potion')
    wait(200,500)
    end
    elseif $vocation == 'paladin' then
    if itemcount('bullseye potion') > 0 then
    useitem('bullseye potion')
    wait(200,500)
    end
    elseif $vocation == 'knight' then
    if itemcount('berserk potion') > 0 then
    useitem('berserk potion')
    wait(200,500)
    end
    end
    end
    end
    end

  3. #3
    Free User
    Join Date
    Aug 2014
    Posts
    37
    Reputation
    10
    Rep Power
    0
    Bro thanks i use in Persistent ? Or Hotkey ?

  4. #4
    Free User
    Join Date
    Aug 2014
    Posts
    37
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    all vocations

    auto(TimeCheck*1000)

    local UsePotions = true
    local HuntSections = {'Hunt'} --{'Hunt'} or {'Floo 1', 'Floor 2'}
    local TimeCheck = 60 --seconds

    if $connected then
    if UsePotions then
    if table.find(HuntSections, $wptsection) then
    if table.find({'druid', 'sorcerer'}, $vocation) then
    if itemcount('mastermind potion') > 0 then
    useitem('mastermind potion')
    wait(200,500)
    end
    elseif $vocation == 'paladin' then
    if itemcount('bullseye potion') > 0 then
    useitem('bullseye potion')
    wait(200,500)
    end
    elseif $vocation == 'knight' then
    if itemcount('berserk potion') > 0 then
    useitem('berserk potion')
    wait(200,500)
    end
    end
    end
    end
    end
    @Cisco I have a problem...

    error in Cavebot script Pot:
    ["auto(TimeCheck*1000)"]:Pot:1 attempt to perform arithmetic on global 'TimeCheck' (a nil value)

  5. #5
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    @Voiiz

    test...

    auto(TimeCheck*1000)

    init start

    local UsePotions = true
    local HuntSections = {'Hunt'} --{'Hunt'} or {'Floo 1', 'Floor 2'}
    local TimeCheck = 60 --seconds

    init end

    if $connected then
    if UsePotions then
    if table.find(HuntSections, $wptsection) then
    if table.find({'druid', 'sorcerer'}, $vocation) then
    if itemcount('mastermind potion') > 0 then
    useitem('mastermind potion')
    wait(200,500)
    end
    elseif $vocation == 'paladin' then
    if itemcount('bullseye potion') > 0 then
    useitem('bullseye potion')
    wait(200,500)
    end
    elseif $vocation == 'knight' then
    if itemcount('berserk potion') > 0 then
    useitem('berserk potion')
    wait(200,500)
    end
    end
    end
    end
    end

  6. #6
    Free User
    Join Date
    Aug 2014
    Posts
    37
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    @Voiiz

    test...

    auto(TimeCheck*1000)

    init start

    local UsePotions = true
    local HuntSections = {'Hunt'} --{'Hunt'} or {'Floo 1', 'Floor 2'}
    local TimeCheck = 60 --seconds

    init end

    if $connected then
    if UsePotions then
    if table.find(HuntSections, $wptsection) then
    if table.find({'druid', 'sorcerer'}, $vocation) then
    if itemcount('mastermind potion') > 0 then
    useitem('mastermind potion')
    wait(200,500)
    end
    elseif $vocation == 'paladin' then
    if itemcount('bullseye potion') > 0 then
    useitem('bullseye potion')
    wait(200,500)
    end
    elseif $vocation == 'knight' then
    if itemcount('berserk potion') > 0 then
    useitem('berserk potion')
    wait(200,500)
    end
    end
    end
    end
    end
    @Cisco now ITS OK.. VERY THANKS BROOO <3

 

 

Posting Permissions

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