Signup Now
Results 1 to 3 of 3
  1. #1
    Free User
    Join Date
    Jan 2016
    Posts
    5
    Reputation
    10
    Rep Power
    0

    Focused GHP/UHP/SHP healing to Knights

    Hello Community

    I Was wondering if its possible to make a persistent to focus the use of GHP\UHP\SHP when you reach like 40% hp till 70% and while doing it, its DISABLE or dont make you use Mana Potions until your hp reach the 70%+ line.

    Im Asking for it bc sometimes when im running some manual hunts, my Health potions get delayed bc of the Mana Potions, even when i tick the "Do Not Override actions" in the healer setup".

    Ty in advance guys

    PS: did some search in forum and didnt find something like that, sorry in advance if im wrong.

  2. #2
    Free User
    Join Date
    Jan 2016
    Posts
    5
    Reputation
    10
    Rep Power
    0
    Bump

  3. #3
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by Mermara View Post
    Hello Community

    I Was wondering if its possible to make a persistent to focus the use of GHP\UHP\SHP when you reach like 40% hp till 70% and while doing it, its DISABLE or dont make you use Mana Potions until your hp reach the 70%+ line.

    Im Asking for it bc sometimes when im running some manual hunts, my Health potions get delayed bc of the Mana Potions, even when i tick the "Do Not Override actions" in the healer setup".

    Ty in advance guys

    PS: did some search in forum and didnt find something like that, sorry in advance if im wrong.
    You already tested the persistent Borges?

    https://forums.tibiawindbot.com/show...and-much-more)

    PS: Remember to keep the sup backpack always open.

    If the persistent Borges does not work for you, I took and edited the persistent Borges according to the application is.

    use GHP\UHP\SHP 40% hp up to 70%, after 70% hp It will be used only exura gran ico and/or exura ico.


    --Knight Spells and Potions Configuration
    local UturaGranK = true -- Use Utura Gran? set true or false
    local UturaK = false -- Use Utura? set true or false
    local ExuraGranIcoK = 70 -- Percentage to use Exura Gran Ico
    local ExuraIcoK = 70 -- Percentage to use Exura Ico

    local UltimateHealthPotionk = 69 -- Percentage to use Ultimate Health Potion
    local GreatHealthPotionk = 69 -- Percentage to use Great Health Potion
    local StrongHealthPotionk = 69 -- Percentage to use Strong Health Potion
    local HealthPotionk = 69 -- Percentage to use Health Potion

    local ManaPotionK = 70 -- Percentage to use Mana Potion

    --Spells
    if $hppc >= ExuraGranIcoK and cancast("exura gran ico") then
    cast("exura gran ico")
    elseif $hppc >= ExuraIcoK and cancast("exura ico") then
    cast("exura ico")
    end

    if not $strenghtened and not $pzone and $hppc <= 95 then
    if UturaGranK then
    cast("utura gran")
    elseif UturaK then
    cast("utura")
    end
    end

    --Potions
    if $hppc <= UltimateHealthPotionk and $level >= 130 and itemcount("ultimate health potion") >= 1 then
    pausewalking(200,500)
    useoncreature("ultimate health potion",$self)
    elseif $hppc <= GreatHealthPotionk and $level >= 80 and itemcount("great health potion") >= 1 then
    pausewalking(200,500)
    useoncreature("great health potion",$self)
    elseif $hppc <= StrongHealthPotionk and $level >= 50 and itemcount("strong health potion") >= 1 then
    pausewalking(200,500)
    useoncreature("strong health potion",$self)
    elseif $hppc <= HealthPotionk and itemcount("health potion") >= 1 then
    pausewalking(200,500)
    useoncreature("health potion",$self)
    elseif $mppc <= ManaPotionK and itemcount("mana potion") >= 1 then
    pausewalking(200,500)
    useoncreature("mana potion",$self)
    end


    If the code I wrote is wrong. I'm sorry because I am traveling that is my home computer that has the bot license.
    But I'm sure that this code right.

 

 

Posting Permissions

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