Jump to content

Bouni

Members
  • Posts

    0
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Bouni reacted to savall in Skinning option doesn't work   
    Well, I found a partial solution which is to use a skinning macro every 10 sec when the character is not fighting but it's skipping half of the skinnable mobs... Better than nothing but i'm still waiting for help.
    (here is the macro in case this topic personally interests you)
    #showtooltip
    /targetlastennemy
    /use [dead] Skinning
     
    EDIT : It turns out that it is way more practical to repeat the macro every 3 secs, it will skin every mob as long as the bot doesn't kill them in pack.  
  2. Like
    Bouni reacted to Findeh in One more thread about double casting   
    This have been discussed like 20 times already during like 2 years at least, but still, there is no good solution for this, as far as i know.
    So the problem is, wrobot will cast spell with the cast time twice in a row sometimes (Very often, to be fair).
    Base example, if have condition like:
     
    if (Target.HealthPercent <= 60) { HealingSpell.Launch(); } There is prety high chance that when Target will reach 60% hp that's what will happen:
    1) You will start to cast Healing Spell
    2) You will heal the target to 100% health
    3) While target is at 100% health you will start to cast the same Healing spell again, that will be just a mana waste.
    And there is no way to really fix it "normal way", without adding enormous delays in your rotation. Atleast i can't.
    Maybe i'm wrong, feel free to point me at right code direction ?
    So my proposition is, maybe, we can have some way to preven spell to be casted 2 times in a row with the .lauch(parameter) method?
    Something like: "If SpellName have been casted successful, then prevent SpellName to be casted for N ms".
    Thank you.
     
×
×
  • Create New...