Signup Now
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 24
  1. #11
    Free User
    Join Date
    Jan 2014
    Posts
    136
    Reputation
    11
    Rep Power
    21
    If it work I will put it into first post
    Leave feedback please
    edit:
    It wont self heal if mas res is cooldowned, it will sio. No self heal between mas res will be implemented today sory :/[/FONT]
    so what's new in this one and the first one?
    Just died cuz it didnt self heal between mass res xDDDD really need it haha

    Edit: i dont think u can sio between mass res.

    This is almost perfect ! works so fucking good. almost PERFECT!
    Last edited by SweApa; 01-18-2014 at 03:01 AM.

  2. #12
    Free User
    Join Date
    Jan 2014
    Posts
    136
    Reputation
    11
    Rep Power
    21
    Quote Originally Posted by jakub View Post
    Thank you I didnt know that I will fix it when I got time
    Bump =)!

  3. #13
    Free User
    Join Date
    Jan 2014
    Posts
    136
    Reputation
    11
    Rep Power
    21
    Sorry for spamming the thread man, but self.heal between Mass res CD is a must really. Then it's gonna be hardcore. i wont use the lastest script u made because u said it wont selfheal if mass res in on CD, it will sio, and that is just not good for me. i need it to selfheal first, then mass res, then sio if it's safe for both.

    thank you man!

  4. #14
    Free User Orexx's Avatar
    Join Date
    Dec 2013
    Posts
    760
    Reputation
    21
    Rep Power
    22
    How is this persistent hotkey? anyone else try it?

  5. #15
    Free User
    Join Date
    Jan 2014
    Posts
    136
    Reputation
    11
    Rep Power
    21
    @Orexx
    YE put it in presistent and put it on "yes"

    Im using it ALL THE TIME- it doesnt feel the mass ress cooldown.

    i just put it into scripts and put yes on it. and then save. @bergvall helped me with making it feel the cooldown so it's working ALOT better.

    Use this instead:

    Code:
    init start
    local friends = { 
                    {name = 'ekNAME', hppc = 89},
                    {name = 'ekNAME', hppc = 89},
    -- you can delete or add friends by copying lines
                    }
    local selfhppc = 75  -- % of your HP to mas res self (if enough people are in range), if your HP% is below will not sio friends.
    local mininrange = 2 -- Atleast how many peope has to be in range of mas res to use it (including you only if your HP% is below selfhppc)
    -- If theres no action to take it will run SPELL HEALER.
    init end
    
    
    
    
    auto(20,50)
    
    
    local inrange = 0
    local tosioname = nil
    
    
    if $hppc <= selfhppc then
        inrange = inrange + 1
    end
    
    
    foreach creature m 'pt' do
        for k, v in ipairs(friends) do
            if m.name == v.name and m.hppc <= v.hppc then
    			if tosioname == nil then
    				tosioname = m.name
    			end
    			if m.dist <=3 then
    				inrange = inrange + 1
    			end
            end
        end
    end
    
    
    if inrange >= mininrange then
    	if getsetting('SpellHealer/Enabled') == 'yes' then
    		setsetting('SpellHealer/Enabled', 'no')
        end
        if cancastspell('Mass Healing') then
            cast('exura gran mas res')
        else if $hppc <= selfhppc and cooldown('exura gran mas res') then
            cast('exura vita')
        end
           
        end
        return
    end
    
    
    if tosioname ~= nil and $hppc >= selfhppc then
    	if getsetting('SpellHealer/Enabled') == 'yes' then
    		setsetting('SpellHealer/Enabled', 'no')
        end
        if cancastspell('Heal Friend') then
            cast('exura sio "' .. tosioname)
        end
        return
    end
    
    
    if getsetting('SpellHealer/Enabled') == 'no' then
        setsetting('SpellHealer/Enabled', 'yes')
    end
    It's the same but with a cooldown checker on mas res.
    Last edited by SweApa; 03-05-2014 at 04:49 PM.

  6. #16
    Free User bergvall's Avatar
    Join Date
    Dec 2013
    Posts
    43
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by SweApa View Post
    @Orexx
    YE put it in presistent and put it on "yes"

    Im using it ALL THE TIME- it doesnt feel the mass ress cooldown.

    i just put it into scripts and put yes on it. and then save.
    someone helped me with making it feel the cooldown so it's working ALOT better.

    Use this instead:

    Code:
    init start
    local friends = { 
                    {name = 'ekNAME', hppc = 89},
                    {name = 'ekNAME', hppc = 89},
    -- you can delete or add friends by copying lines
                    }
    local selfhppc = 75  -- % of your HP to mas res self (if enough people are in range), if your HP% is below will not sio friends.
    local mininrange = 2 -- Atleast how many peope has to be in range of mas res to use it (including you only if your HP% is below selfhppc)
    -- If theres no action to take it will run SPELL HEALER.
    init end
    
    
    
    
    auto(20,50)
    
    
    local inrange = 0
    local tosioname = nil
    
    
    if $hppc <= selfhppc then
        inrange = inrange + 1
    end
    
    
    foreach creature m 'pt' do
        for k, v in ipairs(friends) do
            if m.name == v.name and m.hppc <= v.hppc then
    			if tosioname == nil then
    				tosioname = m.name
    			end
    			if m.dist <=3 then
    				inrange = inrange + 1
    			end
            end
        end
    end
    
    
    if inrange >= mininrange then
    	if getsetting('SpellHealer/Enabled') == 'yes' then
    		setsetting('SpellHealer/Enabled', 'no')
        end
        if cancastspell('Mass Healing') then
            cast('exura gran mas res')
        else if $hppc <= selfhppc and cooldown('exura gran mas res') then
            cast('exura vita')
        end
           
        end
        return
    end
    
    
    if tosioname ~= nil and $hppc >= selfhppc then
    	if getsetting('SpellHealer/Enabled') == 'yes' then
    		setsetting('SpellHealer/Enabled', 'no')
        end
        if cancastspell('Heal Friend') then
            cast('exura sio "' .. tosioname)
        end
        return
    end
    
    
    if getsetting('SpellHealer/Enabled') == 'no' then
        setsetting('SpellHealer/Enabled', 'yes')
    end
    It's the same but with a cooldown checker on mas res.
    That was me!

  7. #17
    Wind Powered Fredrik's Avatar
    Join Date
    Apr 2014
    Posts
    178
    Reputation
    10
    Rep Power
    21
    And if name have like this 'Knight Lord'Ace' ? it dont work with 'Knight lord~'

  8. #18
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    Quote Originally Posted by Fredrik View Post
    And if name have like this 'Knight Lord'Ace' ? it dont work with 'Knight lord~'
    put this:
    'Knight Lord\'Ace'

  9. #19
    Free User Micose's Avatar
    Join Date
    Feb 2014
    Posts
    10
    Reputation
    10
    Rep Power
    0
    I will check how it works hunting some Drakens at WOTE! D

  10. #20
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    i think its bad script it use only mas res when im 2 sqm next to EK and i have full hp and if am north west or something like that of ek bot still use mas res but not ek in rage

    sorry for my bad eng and can someone do better script?
    Last edited by wybocenooba; 09-11-2014 at 02:26 PM.

 

 

Posting Permissions

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