Signup Now
Page 15 of 18 FirstFirst ... 51314151617 ... LastLast
Results 141 to 150 of 180

Thread: Spells Attacker

  1. #141
    Free User
    Join Date
    Jun 2014
    Posts
    11
    Reputation
    10
    Rep Power
    0
    Exori min not working here...

    Why?

  2. #142
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    25
    Quote Originally Posted by TreTaA View Post
    Exori min not working here...

    Why?
    With Hppc it won't work, only Amount of monsters.

    Quote Originally Posted by chacalzito View Post
    How to hit it by GFB and give vis hur?
    Both togheter won't work, there's Auto Area Shooter for runes and this for spells.

  3. #143
    Free User
    Join Date
    Sep 2014
    Posts
    1
    Reputation
    10
    Rep Power
    0
    man you have a spells attack of paladin?

  4. #144
    Free User
    Join Date
    Sep 2014
    Posts
    2
    Reputation
    10
    Rep Power
    0
    Thanks a lot! it works great, but i think i am doing something wrong, i want to attack a monster with exori hur and exori ico ONLY when it have for example LESS than 20% of hitpoints
    can you help me?
    Thanks

  5. #145
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    25
    Quote Originally Posted by morganzim View Post
    Thanks a lot! it works great, but i think i am doing something wrong, i want to attack a monster with exori hur and exori ico ONLY when it have for example LESS than 20% of hitpoints
    can you help me?
    Thanks
    That's now how it's supposed to be, to do so, you need to edit line 79

    			elseif Spell.Hppc and $attacked.hppc >= math.max(Spell.Hppc, 1) and table.find(Spell.Monsters, $attacked.name:lower()) and cancast(Spell.Info, $attacked) then


    to

    			elseif Spell.Hppc and $attacked.hppc <= math.min(Spell.Hppc, 100) and table.find(Spell.Monsters, $attacked.name:lower()) and cancast(Spell.Info, $attacked) then


    Quote Originally Posted by mathyruiz View Post
    man you have a spells attack of paladin?
    Just put your paladin spells on.

  6. #146
    Banned
    Join Date
    Aug 2014
    Posts
    314
    Reputation
    18
    Rep Power
    0
    @Leonardo the script work really good but for make work whit spells like eternal winter or divine caldera i need the edit the line 70?

    from
    BestAmount = not Spell.AttackSupport and maroundspell(Spell.Name, BestDir, unpack(Spell.Monsters)) or maround(1, false, unpack(Spell.Monsters))
    end


    to


    BestAmount = not Spell.AttackSupport and maroundspell(Spell.Name, BestDir, unpack(Spell.Monsters)) or maround(6, false, unpack(Spell.Monsters))
    end


    Just change the distance for check the amount of monsters??

  7. #147
    Moderator Leonardo's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    758
    Reputation
    77
    Rep Power
    25
    Quote Originally Posted by osiris ra View Post
    @Leonardo the script work really good but for make work whit spells like eternal winter or divine caldera i need the edit the line 70?

    from
    BestAmount = not Spell.AttackSupport and maroundspell(Spell.Name, BestDir, unpack(Spell.Monsters)) or maround(1, false, unpack(Spell.Monsters))
    end


    to


    BestAmount = not Spell.AttackSupport and maroundspell(Spell.Name, BestDir, unpack(Spell.Monsters)) or maround(6, false, unpack(Spell.Monsters))
    end


    Just change the distance for check the amount of monsters??
    No that is to make compatible with buffer spells like "utito tempo". There's no way to do that.

  8. #148
    Banned
    Join Date
    Aug 2014
    Posts
    314
    Reputation
    18
    Rep Power
    0
    Quote Originally Posted by Leonardo View Post
    No that is to make compatible with buffer spells like "utito tempo". There's no way to do that.
    Well i understand then i can use that action??

    init start
    Monsters = {"Dragon", "Dragon Lord", "Demon"} -- add monsters here
    Amount = 4
    init end

    auto(500)
    if maround(5, unpack(Monsters)) >= Amount and cancastspell("spell for say") then
    cast("spell for say")
    wait(500,1000)
    end

  9. #149
    Free User
    Join Date
    Mar 2014
    Posts
    26
    Reputation
    11
    Rep Power
    0
    How can i get value from user options to Your script
    Code:
    {Name = "Exori hur", Amount = getuseroption("AmountExoriHur")},
    My user options :
    Code:
    "type" : "lineedit",
    "name" : "AmountExoriHur",
    "description" : "",
    "text" : "Amount Exori Hur",
    "value" : "2"

    i try to with :
    Code:
    {Name = "Exori hur", Amount = tonumber(getuseroption("AmountExoriHur"))}
    but this doesn't working

  10. #150
    Free User
    Join Date
    Sep 2014
    Posts
    2
    Reputation
    10
    Rep Power
    0
    Thank you Leonardo it works great!

 

 

Posting Permissions

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