Signup Now
Page 1 of 8 123 ... LastLast
Results 1 to 10 of 71
  1. #1
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28

    Friend Healer (Exura Sio)

    Friend Healer (Exura Sio)


    Description

    Heals your listed allies using exura sio.


    Configuration

    Edit the friends variable on the init block to specify your friends' names. Also change healHPPC to set at which HPPC you should heal your friends and minHPPC/minMPPC to set a minimum HPPC/MPPC you should have to heal anyone.


    Code

    init start
    -- local SCRIPT_VERSION = '1.0.0'

    -- Friends to heal
    local friends = {
    'Cachero',
    'Bubble'
    }

    local healHPPC = 100 -- Minimum HPPC to heal
    local minHPPC = 30 -- Minimum HPPC you should have to heal
    local minMPPC = 30 -- Minimum MPPC you should have to heal

    -- DO NOT EDIT BELOW THIS LINE --

    table.lower(friends)
    init end

    auto(100)

    if $hppc >= minHPPC and $mppc >= minMPPC then
    foreach creature m 'pt' do
    if m.hppc < healHPPC and table.find(friends, m.name:lower()) then
    cast('exura sio "' .. m.name:lower())
    waitping()
    return
    end
    end
    end

    Git
    Last edited by Raphael; 04-26-2014 at 08:39 PM. Reason: Added minHPPC

  2. #2
    Free User eachziN's Avatar
    Join Date
    Dec 2013
    Location
    Terra gentil ao turista
    Posts
    49
    Reputation
    14
    Rep Power
    0
    thanks a lot Raphael, currently using this :}

  3. #3
    Free User
    Join Date
    Dec 2013
    Posts
    8
    Reputation
    10
    Rep Power
    0
    Where do I put this? Scripter tab?

  4. #4
    Free User Turc's Avatar
    Join Date
    Dec 2013
    Location
    Poland
    Posts
    33
    Reputation
    12
    Rep Power
    0
    Yes scripter tab or in cavebot tab go to scripter.

  5. #5
    Moderator BUgWT's Avatar
    Join Date
    Dec 2013
    Location
    www.bugwt.com
    Posts
    546
    Reputation
    72
    Rep Power
    22
    Quote Originally Posted by Turc View Post
    Yes scripter tab or in cavebot tab go to scripter.
    Use scripter tab because cavebot tab would need cavebot to be activated.


    LATEST SCRIPTS SKYPE
    Got a Question? Add me on Skype!
    bugwt.support

    This image is hosted on a possibly dangerous website (http://mystatus.skype.com/smallclassic/bugwt.support). Please consider reuploading it on Imgur.com.


  6. #6
    Free User
    Join Date
    Dec 2013
    Posts
    8
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Turc View Post
    Yes scripter tab or in cavebot tab go to scripter.
    Quote Originally Posted by BUgWT View Post
    Use scripter tab because cavebot tab would need cavebot to be activated.
    Thank you guys!!

  7. #7
    Wind Powered Voltzin's Avatar
    Join Date
    Dec 2013
    Posts
    212
    Reputation
    31
    Rep Power
    21
    Can you made a check for my hp? Sometimes I have 5% hp and the bot cast sio, and I die

  8. #8
    Free User Donatello's Avatar
    Join Date
    Dec 2013
    Location
    Tuscany, Italy
    Posts
    398
    Reputation
    51
    Rep Power
    21
    Quote Originally Posted by Voltzin View Post
    Can you made a check for my hp? Sometimes I have 5% hp and the bot cast sio, and I die
    Raphael is traveling but I did it for you:
    init start
    -- Friends to heal
    local friends = {
    'Cachero',
    'Bubble'
    }

    local healHPPC = 70 -- Minimum HPPC to heal
    local minHPPC = 25 -- Minimum HPPC you should have to heal
    local minMPPC = 30 -- Minimum MPPC you should have to heal

    table.lower(friends)
    init end

    auto(100)

    if $mppc >= minMPPC and $hppc >= minHPPC then
    foreach creature m 'pt' do
    if m.hppc < healHPPC and table.find(friends, m.name:lower()) then
    cast('exura sio "' .. m.name:lower())
    wait(300, 500)
    return
    end
    end
    end

  9. #9
    Wind Powered Voltzin's Avatar
    Join Date
    Dec 2013
    Posts
    212
    Reputation
    31
    Rep Power
    21
    @Donatello
    Thank you so much!

  10. #10
    Banned
    Join Date
    Dec 2013
    Location
    United States
    Posts
    848
    Reputation
    30
    Rep Power
    0
    Will be nice, can have my ED use this to heal me. As well as healing him. Thanks guys.

 

 

Posting Permissions

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