Signup Now
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 29
  1. #11
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @xvdazvx

    No, this script can be used with or without manashield.
    I personally do not have a druid so I can't test it too much (although i've tested the Sio and it works perfectly).
    I am a bit unsure of the Mas Res but technically should work with no problems.

    What settings do you use, can you copy/paste your script settings here?

  2. #12
    Banned
    Join Date
    Jun 2014
    Posts
    29
    Reputation
    10
    Rep Power
    0
    init start
    local SioFriends = {"name", "Eternal Oblivion"} -- People to heal with Exura Sio
    local MasResFriends = {"name", "aZe"} -- People to heal with Exura Gran Mas Res

    local settings = {
    Sio = true,
    HPPCsio = 65, -- Your FRIENDS Health % to cast Sio
    SelfMPPCsio = 15, -- YOUR min. Mana % to cast Sio
    SelfHPPCsio = 50, -- YOUR min. HP % to cast Sio

    MasRes = true,
    MinMasRes = 2, -- Min. people below HPPCmasres to cast.
    HPPCmasres = 40, -- Your FRIEND(S) Health % to cast mas res
    SelfMPPCmasres = 15, -- YOUR min. Mana % to cast Exura Gran Mas Res
    SelfHPPCmasres = 80 --- YOUR min. HP % to cast Exura Gran Mas Res
    }
    init end

    auto(350)

    local amount = 0

    if settings.MasRes then
    if cancastspell("exura gran mas res") then
    foreach creature masres "ps" do
    if table.find(MasResFriends, masres.name) then
    if isonspellarea(masres, "exura gran mas res", "any") and (masres.hppc <= settings.HPPCmasres) and ($mppc >= settings.SelfMPPCmasres) and ($hppc >= settings.SelfHPPCmasres) then
    amount = amount+1
    end
    end
    end
    if (amount >= settings.MinMasRes) then
    cast("exura gran mas res")
    end
    end
    end

    if settings.Sio then
    if (amount < settings.MinMasRes) then
    if cancastspell("Heal Friend") then
    foreach creature sio "ps" do
    if table.find(SioFriends, sio.name) then
    if (sio.hppc <= settings.HPPCsio) and ($mppc >= settings.SelfMPPCsio) and ($hppc >= settings.SelfHPPCsio) then
    cast('exura sio "'..sio.name)
    end
    end
    end
    end
    end
    end

  3. #13
    Banned
    Join Date
    Jun 2014
    Posts
    29
    Reputation
    10
    Rep Power
    0
    im level 202 im not really sure what to edit on the top part all i changed is the name of the people to heal and 65%hp? to heal ek

    (its at roshy i had a silencer on me and he had creatures around him so i was healing myself with the build in bot healer as well as using your script to sio him)

    my healing settings are exura 85-88 exura gran 70 73 exura vita 50-59
    Last edited by xvdazvx; 04-05-2015 at 07:15 PM.

  4. #14
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @xvdazvx

    Okay so let me explain how it works with your settings:

    Exura Sio:
    The script will NOT use Exura Sio if there are X people to use Exura Gran Mas Res on (MinMasRes).
    The script will try to heal your friend with SIO when he is below 65% (HPPCsio).
    The script will NOT use Exura Sio if YOUR mana % is below 15% (SelfMPPCsio).
    The script will NOT use Exura Sio if YOUR hp % is below 50% (SelfHPPCsio).

    Exura Gran Mas Res:
    If you want to consider yourself as a "target" in MinMasRes, put yourself in the MasResFriends list.
    The script will count all players in the list below 40% HP and add to the MinMasRes count (HPPCmasres).
    The script will NOT use Mas Res if your mana is below 15% (SelfMPPCmasres).
    The script will NOT use Mas Res if your health is below 80% (SelfHPPCmasres).


    With all of that out of the way, was there any chance your health went below 50% (SelfHPPCsio) or 80% (SelfHPPCmasres) when your friend died? Because again, the script will NOT use any of the spells if your health goes below those settings, same with mana for the mana settings..

  5. #15
    Banned
    Join Date
    Jun 2014
    Posts
    29
    Reputation
    10
    Rep Power
    0
    yes that is no doubt what happened that is why i asked that the script only works mana shield since its not going to heal my party if i have a creature on me cause a silencer/frazzle will take my hp bu 50% easy with 1 hit which in turn will not heal my knight....so its basically best to use manashield to ensure my party is safe @Riku

  6. #16
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @xvdazvx

    Or you can just change (SelfHPPCsio) and (SelfHPPCmasres) to 0 and it will always use the spells no matter if your health is low or not.

  7. #17
    Free User HanzHanz's Avatar
    Join Date
    Jan 2014
    Posts
    26
    Reputation
    11
    Rep Power
    0
    Does anyone use this persistant?
    I tend to bite off a little more than I can chew, hoping I'll quickly learn how to chew it.

  8. #18
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @HanzHanz

    I do sometimes nowadays, still haven't tested the mas res functionality however (when I made the script I didn't have a druid), so that still needs to be done.
    I know for a fact that the Sio works like a charm, though.

  9. #19
    Free User HanzHanz's Avatar
    Join Date
    Jan 2014
    Posts
    26
    Reputation
    11
    Rep Power
    0
    Quote Originally Posted by Riku View Post
    @HanzHanz

    I do sometimes nowadays, still haven't tested the mas res functionality however (when I made the script I didn't have a druid), so that still needs to be done.
    I know for a fact that the Sio works like a charm, though.
    ahh well i need so the mas res function works but i havent tested.
    I tend to bite off a little more than I can chew, hoping I'll quickly learn how to chew it.

  10. #20
    Free User Riku's Avatar
    Join Date
    Nov 2014
    Posts
    365
    Reputation
    49
    Rep Power
    19
    @HanzHanz

    I tested it today, it works 100%, surprisingly since it was written when I couldn't even test it, once.
    It has been slightly tweaked (I updated it, small detail).

    It will always prioritze Mas Res over Sio if targets are in range of mas res.

 

 

Posting Permissions

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