Signup Now
Results 1 to 6 of 6

Thread: Potion drink

  1. #1
    Free User
    Join Date
    Dec 2013
    Posts
    70
    Reputation
    10
    Rep Power
    22

    Potion drink

    I cant find anywhere so i just ask if exist hotkey to drink potion when below x% and drink untill reach >x%. When below 50% drink mana potion untill i will have 90%.

  2. #2
    Free User Ozun's Avatar
    Join Date
    Dec 2013
    Location
    POLAND
    Posts
    924
    Reputation
    96
    Rep Power
    23
    Will drink strong mana potions when u got less mana than 50%
    auto(50)

    if $mppc <= 50 and itemcount(237) > 0 then
    useoncreature(237, $self)
    wait(400)
    end

  3. #3
    Free User
    Join Date
    Dec 2013
    Posts
    70
    Reputation
    10
    Rep Power
    22
    OK, but i need to drink mana potion until reach for example 90%

  4. #4
    Free User Ozun's Avatar
    Join Date
    Dec 2013
    Location
    POLAND
    Posts
    924
    Reputation
    96
    Rep Power
    23
    So, normal Mana Potion id=268; u only need to switch 2 variables there

    here u are, mana potion and until reach 90% :

    auto(50)

    if $mppc <= 90 and itemcount(268) > 0 then
    useoncreature(268, $self)
    wait(400)
    end

  5. #5
    Free User
    Join Date
    Dec 2013
    Posts
    190
    Reputation
    11
    Rep Power
    22
    the bot healer have this option. In Extra condition use up to 90% and you are good to go

    but if you want action it's something like this, just change the potion name

    auto(200)

    if $mppc <= 50 and itemcount('great mana potion') > 0 then
    while $mppc <= 90 and itemcount('great mana potion') > 0 do
    useoncreature('great mana potion' $self)
    wait(400,600)
    end
    end
    Last edited by arruda; 06-17-2014 at 04:16 PM.

  6. #6
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,200
    Reputation
    180
    Rep Power
    10
    Like @arruda said, just use Potion Healer, which already has this option.

 

 

Posting Permissions

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