Ohren 106 Posted April 10, 2013 Share Posted April 10, 2013 I was asked by someone if I could elaborate further on Droidz post condition list (found ). Since I have been so busy with work (47.5h/week) and heroic progression (8/13 ToT, running around 15h/week), I figure this might help other people learn to create amazing fight classes. I am going to break things up a bit, and give some examples. If you have ANY questions.. feel free to ask. Remember, there is no such thing as a dumb question in my eyes, unless your grammar sucks. Condition Number:Health Percent -> Your Percent health (0 to 100)Mana -> Your manaRage -> Your RageFocus -> Your FocusEnergy -> Your EnergyChi -> Your ChiRunes -> Your RunesRunic Power -> Your Runic PowerSoul Shards -> Your Soul ShardsEclipse -> Your EclipseHoly Power -> Your Holy PowerAlternate -> Your AlternateDark Force -> Your Dark ForceLight Force -> Your Light ForceShadow Orbs -> Your Shadow OrbsBurning Embers -> Your Burning EmbersDemonic Fury -> Your Demonic FuryArcane Charges -> Your Arcane ChargesTarget Distance -> Distance between your character and your current targetDistance Pet To Target -> Distance between your pet and your current targetDistance Me To Pet -> Distance between your character and your petMe Level -> Your levelTarget Level -> The level of your current target Condition Unit Near:Hostile Unit Near -> Number of npc hostiles in the radius selected (radius starting at the position of your character)Unit Attack Player Near -> Number of npc attacking your character in the radius selected (radius starting at the position of your character)Hostile Unit Near Target -> Number of npc hostiles in the radius selected (radius starting at the position of your current target)Unit Attack Player Near Target -> Number of npc attacking your character in the radius selected (radius starting at the position of your current target)Condition String Bool:Buff -> Check if your character has buff (buff name in english, case sensitive)Know Spell -> Check if your know selected spell (spell name in english, case sensitive)Is Spell Usable -> Check if your selected spell is usable (spell name in english, case sensitive)Condition Bool:In Battleground -> True if the current map is an BattlegroundHave Target -> True if your character has currently an targetHave Pet -> True if your character has an petMe In Combat -> True if your character is in fightMe In Move -> True if your character movingTarget In Move -> True if your target movingPet In Move -> True if your pet movingTarget In Cast -> True if your target casting spell or using itemPet In Cast -> True if your pet casting spell or using itemMe In Cast -> True if your character casting spell or using itemTarget Is Player -> True if your current target is an playerTarget Is Summoned -> True if your current target is summoned (sample: pet)Target Pet Is My Target -> True if your character and your pet have same targetTarget Targeting Me -> True if your current target has for target your characterTarget Targeting Me Or My Pet -> True if your current target has for target your character or your petTarget Targeting My Pet -> True if your current target has for target your petTarget Is Elite -> True if your current target is an npc eliteTarget Is World Boss -> True if your current target is an npc world bossMe Is Stunned -> True if your character is stunnedTarget Is Stunned -> True if your current target is stunnedPet Is Stunned -> True if your pet is stunnedMe Is Swimming -> True if your character is swimmingTarget Is Swimming -> True if your current target is swimmingPet Is Swimming -> True if your pet is swimmingMe Is Flying -> True if your character is flyingTarget Is Flying -> True if your current target is flyingPet Is Flying -> True if your pet is flyingCondition String:C Sharp Code -> C#.net code with acces at wManager.dll and robotManager.dll (sample: ObjectManager.Me.HealthPercent < 70 && ObjectManager.Me.HealthPercent > 50)Condition Item Number:Item Count -> Number of items (by item id)Condition Buff Stack:Buff Stack Target -> Number of stack by buff of your target (buff name in english, case sensitive)Buff Stack Pet -> Number of stack by buff of your pet (buff name in english, case sensitive) Nicki Anonymous and Droidz 2 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/ Share on other sites More sharing options...
Ohren 106 Posted April 10, 2013 Author Share Posted April 10, 2013 Example One: Simple Hunter fight class. Starting with Mend Pet. Pet Health Percent -> Percent health of your pet (0 to 100) This setup will cast Mend Pet IF your pet's health is smaller than 80%. The problem with this, is since it is a HoT (heal over time), it will chain cast while your pet is below 80%, so I'd suggest adding a second condition... Pet Buff -> Check if your pet has buff (debuff) (buff name in english, case sensitive) Now, with this setup, BOTH conditions must be met before it will cast Mend Pet. As before, if(pet_health < 80%), but now it also requires that your pet does NOT (false means it does not have the buff, true means that it DOES have the buff) have the Mend Pet buff on it currently. This keeps you from chain casting Mend Pet while your pet is below 80% health. Nicki Anonymous and Droidz 2 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2138 Share on other sites More sharing options...
Ohren 106 Posted April 10, 2013 Author Share Posted April 10, 2013 Example Two, adding Hunter's Mark to your fight class. Target Buff -> Check if your target has buff (debuff) (buff name in english, case sensitive) This will simple check if your target does not have the buff "Hunter's Mark", if you had this at true, it would only cast Hunter's Mark IF your target already had the buff, which just seems like a big 'ole waste of time. Also, notice how Hunter's Mark is below Mend Pet in the list. Spells that are on the top of the list will be cast first. In fight classes meant for soloing, I use Survivability > Offensive Cooldowns > Damage. 712538, Nicki Anonymous and Droidz 3 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2139 Share on other sites More sharing options...
Ohren 106 Posted April 11, 2013 Author Share Posted April 11, 2013 Example Three: Focus Fire!Buff Stack -> Number of stack by buff of your character (buff name in english, case sensitive) Focus Fire is a really awesome Beast Mastery spell. It uses Frenzy stacks generated by your pet to increase ranged haste. It is the heart to the BM hunter's DPS (that doesn't come from pet of course). In this example, we set it so Focus Fire is only called when your STACKS of Frenzy get to five, which is the max. This gives you 30% ranged haste for 20 seconds, whereas using it at a measly 1 stack only gives 6% for 20 seconds. This is ideal for boss rotations, but if you are simple bot gathering/grinding, it will probably never fire. So you can change the condition to fire at stacks BIGGER than 2. That is probably optimal for a gatherer. 712538, Nicki Anonymous and Droidz 3 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2143 Share on other sites More sharing options...
Nicki Anonymous 26 Posted April 11, 2013 Share Posted April 11, 2013 Nice descriptive post, good work Ohren. Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2149 Share on other sites More sharing options...
Ohren 106 Posted April 11, 2013 Author Share Posted April 11, 2013 Nice descriptive post, good work Ohren. Thank you, I will be adding more whenever I get time. :) Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2151 Share on other sites More sharing options...
creativextent 124 Posted April 11, 2013 Share Posted April 11, 2013 Thanks Ohren, keep up the good work :) Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2157 Share on other sites More sharing options...
Ohren 106 Posted April 11, 2013 Author Share Posted April 11, 2013 Example Four: Just die already... Target Health Percent -> Percent health of your current target (0 to 100) Kill Shot is HUGE damage for that last 20% of a boss' health, and even on world trash, can end a fight real quick. Using a setup like this will only cast Kill Shot if targets health < 20%. Since a lot of classes have spells that deal HUGE damage for the end of a fight (DK's Soul Reaper, Warrior's Execute Shadow Priest's Shadow Word: Death), this one is very useful. You can also use it to keep yourself from wasting your energy/combo points on a Feral Druid by using Rip when it's health is already really low. And this brings up yet ANOTHER condition... Example Five: C-c-c-c-c-combo. Combo Point -> Your combo point All of a rogues and feral druid's BIG damage moves require combo points. But you don't want to cast it right as soon as you get one... or else it's a waste. With this setup (strictly for feral, since critical hits can generate 2 combo points and you never want to waste a single one), if your combo points are BIGGER that 3 (which only leaves 4 and 5) then it will cast rip (and assuming target's health is higher than the previous example). Droidz 1 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2158 Share on other sites More sharing options...
Ohren 106 Posted April 12, 2013 Author Share Posted April 12, 2013 Example Six: Awesome work-around. Soo, this is a work-around for a feature I have suggested, which was to add a way to cast spells that are off the global cooldown, so you don't waste those precious few DPS (or if you're a warrior getting stuck at 100% rage frequently, that massive DPS). LUA Script In spell settings, change Check if know spell, is usable and good distance -> false. How it works: When WRobot is looping your fight class, it runs each condition for the spells, if the first condition is not met, it doesn't ever check the second. So what it does here is, checks is my rage condition is met, if it does it checks if the lua script I set is true or false, while doing this the LUA script (CastSpellByName("Heroic Strike")) actually triggers the spell, then WRobot sees that retV is actually 1 and not 0 like we were looking for, and it goes on it's marry little way, without skipping a beat. Pudge 1 Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2162 Share on other sites More sharing options...
Ohren 106 Posted April 14, 2013 Author Share Posted April 14, 2013 Well I was about to add another one, but I can't upload more pictures. xP Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-2253 Share on other sites More sharing options...
Bear T.O.E. 63 Posted November 2, 2013 Share Posted November 2, 2013 Ohren I like your fight classes alot... Great work man!!! +Rep Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-4698 Share on other sites More sharing options...
alonzo83 1 Posted December 6, 2015 Share Posted December 6, 2015 Hello I too managed to put my rogue in fufu 50 m from the target how? Thank you Link to comment https://wrobot.eu/forums/topic/316-fight-class-conditions/#findComment-11462 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now