Signup Now
Results 1 to 2 of 2

Thread: Auto Healer

  1. #1
    Banned
    Join Date
    Aug 2014
    Posts
    315
    Reputation
    18
    Rep Power
    0

    Auto Healer

    I make some persistent taking some ideas from the script Smart Auto Utani Hur Caster V1.0 by @gordoluis

    So here is the persistent


    -- Auto healer V1.0
    -- I make the persistent taking some idea from that script Smart Auto Utani Hur Caster V1.0 by Godorluis

    init start
    local exura_spell = "Exura" -- you can change the spell if u want
    local exuragran_spell = "Exura Gran" -- you can change the spell if u want
    local exuravita_spell = "Exura Vita" -- you can change the spell if u want
    local maxHPPC = 85 -- Max amount of % of health for say exura
    local minHPPC = 75 -- Min amount of % of health for say exura
    local max2HPPC = 74 -- Max amount of % of health for say exura gran
    local min2HPPC = 50 -- Min amount of % of health for say exura gran
    local min3HPPC = 49 -- Min amount of % of health for say exura vita
    init end

    -- Don't change nothing after that line

    auto(100)--Important checker!

    -- Exura Caster
    if ($hppc >= minHPPC) and ($hppc <= maxHPPC) then
    auto(100)
    cast(exura_spell)
    wait(300,500)
    end

    -- exura gran caster
    if ($hppc >= min2HPPC) and ($hppc <= max2HPPC) then
    auto(100)
    cast(exuragran_spell)
    wait(300,500)
    end

    -- exura vita caster
    if ($hppc <= min3HPPC) then
    auto(100)
    cast(exuravita_spell)
    wait(300,500)
    end
    Last edited by Leonardo; 08-21-2014 at 01:10 PM.

  2. #2
    Free User
    Join Date
    Dec 2013
    Posts
    18
    Reputation
    10
    Rep Power
    0
    it's is GOD thanks!

 

 

Posting Permissions

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