Jump to content

Runaro

WRobot user
  • Posts

    426
  • Joined

  • Last visited

File Comments posted by Runaro

    Feral Druid Legion

       2544    46
    1 hour ago, ivanbss said:

    How can i EDIT this on FightClassEditor  it only opens xml !

    You simply can't edit a .dll with the FightClass Editor.

    If you know basic c#, just decompile the .dll and edit the .cs to your wishes.

  1. 12 hours ago, Arcangelo said:

    Also have a 1-60 vanilla profile (even though the bot don't support it right now) and a 1-60 TBC profile (a friend promissed me outland) that still needs some work, but still runs pretty damn well.

    Don't worry, i haven't forget you. :biggrin:( the profile itself is done since a long time, it just needs some testing and blacklisting )

    Currently full in legion mode, geared my druid full Mythic and soon the Mythic + are coming.

  2. 1 hour ago, PIR said:

    im not sure haha, ill have a look later on, but it works lol, so if hp goes smaller than 85 the bot will heal, dont know what ive done but its worked for me.

     

    like i said ill change it later to what u have said and see what happens, thanks for the feed back, this is my first ever fight class so im still learning :)

    It works, cuz you have "Healing Surge" a second time in your FightClass, where the needed buff condition isn't added.

    Just the first "Healing Surge" won't work, which is at the current highest priority 19.

  3. I'm not playing on retail atm. but how should some spells work if they look like this in your FightClass?

        <FightClassSpell>
          <FightClassConditions>
            <FightClassCondition>
              <ContionType>HealthPercent</ContionType>
              <Param xsi:type="FightClassConditionNumber">
                <Type>Smaller</Type>
                <Value>85</Value>
              </Param>
            </FightClassCondition>
            <FightClassCondition>
              <ContionType>Buff</ContionType>
              <Param xsi:type="FightClassConditionStringBool">
                <Name>Healing surge</Name>
                <Need>true</Need>
              </Param>
            </FightClassCondition>
          </FightClassConditions>
          <SpellName>Healing Surge</SpellName>
          <Priority>19</Priority>
        </FightClassSpell>

    That means, the bot only casts "Healing Surge", if the buff "Healing Surge" exist on your character, but "Healing Surge" isn't a buff..

    Here how it should look like:

        <FightClassSpell>
          <FightClassConditions>
            <FightClassCondition>
              <ContionType>HealthPercent</ContionType>
              <Param xsi:type="FightClassConditionNumber">
                <Type>SmallerOrEqual</Type>
                <Value>85</Value>
              </Param>
            </FightClassCondition>
            <FightClassCondition>
              <ContionType>ManaPercent</ContionType>
              <Param xsi:type="FightClassConditionNumber">
                <Type>BiggerOrEqual</Type>
                <Value>20</Value>
              </Param>
            </FightClassCondition>
          </FightClassConditions>
          <SpellName>Healing Surge</SpellName>
          <Priority>19</Priority>
          <CombatOnly>false</CombatOnly>
          <LockFrame>false</LockFrame>
        </FightClassSpell>

    You could also add a timer, change the priority and add some more conditions to it.

×
×
  • Create New...