Everything posted by Ohren
-
Guess who's coming back... (Help me fix my fight class package)
After further inspection, looks like I am going to have to rebuild almost all my fight classes. WoD changed a lot.
-
Guess who's coming back... (Help me fix my fight class package)
Current issues I have found and will be fixing ASAP... Frost DK chain casting Horn of Winter Arcane mage fight class will not attack. Fire Mage ice barrier timer Frost mage spamming nether tempest
-
Ohren Fire mage fight class !!
I'll be fixing this and uploading a new version ASAP. Thanks 8ball for finding the fix.
-
Arcane mage fight class will not attack.
I'll look into this in the next few hours.
-
Guess who's coming back... (Help me fix my fight class package)
I got a small bonus at work, so I will be buying WoD and 2 months of Wow. So, if you would like to help me out, just post all the bugs you've ran into with my fight class package in my absence.
-
Going to the farthest away dig site.
Alright. It was seeming pretty odd, since it never did it with my old set up.
-
Going to the farthest away dig site.
So I'm Archaeology botting to get some achievements, and I've noticed the bot is choosing the dig site that is absolutely the farthest away. Just wondering if there was an issue with my settings or if it's WRobot choosing them like that.
-
RoF Farmer
- 187 downloads
- Version 1
This is a RoF farmer made for someone. -
Warrior Wont Charge the Target.
Mind if I use your prot warrior as a benchmark for my prot warrior I am working on tonight (assuming I get time to fly to Halfhill to pick up a shield)?
-
Snippets of LUA codes (for FightClass)
Here is a work-around for using spells that are off of the global cool down timer (my example is using Heroic Strike from a Warrior). First, add a spell, I tend to name it Faux (Whatever the spell name is) so in this instance, it will be Faux Heroic Strike. It is ideal to place this up high on priority. Next, add in your conditions. For Heroic Strike, I use Rage > 110. Now add in an LUA script with the following information... LUA Script: CastSpellByName("Heroic Strike");retV=1; Return value research: 0 Return value var: retV ... This will trigger your spell to cast. The reason I set retV's value to 1, then check to see if it equals 0 is just to make sure WRobot doesn't try firing a fake spell named Faux Heroic Strike. And boom, now your spell is completely off the GCD. Make sure the spell is off GCD before using this method, or else it will slow down your fight class and ruin your recount heroism.
-
Monk's brews
One quick question, when returning a Boolean, would it be TigereyeBuffCheck() = false or does it return bool values as a 0/1 format? I guess I just need an example of how to make it work with Me.HaveBuff. Since I need it to check for spell ID of 116740.
-
Monk's brews
Hey Droidz, thank you very much for this, definitely adding this into my collection of LUA/C# snippets.
-
Monk's brews
Yeah, that didn't work at all. :P
-
Monk's brews
Can you use spell ID's instead of spell names? I guess I've never tried that. And yes, they each have a different spell ID.
-
Monk's brews
So I have an issue, which I might resolve before anyone else comes up with an answer... but here goes.. Working on my Windwalker profile, and I am adding in Tigereye Brew into the rotation. Problem is, the buff that keeps track of stacks of it is called Tigereye Brew, and the buff itself that gives the damage increase is also Tigereye Brew. I need LUA to find a way to differentiate these.
-
Inquisition + Templar's Verdict
In prot, isn't shield usually used on cooldown?
-
WRobot an Memory
Hmm, what profile and fight classes are you running?
-
Warrior Arms Fight class
I'm going to be updating my arms warrior class tonight, so whenever a pack update comes in for my fight classes, try that out and give me your input on what needs to be changed to make it better.
-
WRobot an Memory
How much RAM is it using? It's always ran very low for me.
- Request: Heavy Junkbox <- Reputation with Ravenhold
-
TLPD mount farmer!!!
I use that and the auto fire keys on my logitech g19 (Razer Naga would work too), currently I haven't gotten lucky, but I only sit there a couple hours a week. Not too dedicated.
-
Inquisition + Templar's Verdict
Just open it in the fight class editor and move judgement up in the spell priority list.
-
Need LUA Script for Bear Guardian Lacerate.
Here is a solution to your issue. First Lacerate spell makes sure to get 3 stacks, second one makes it so Lacerate casts if there is 6 seconds or less left on the debuff. LacerateTest.xml
-
Snippets of LUA codes (for FightClass)
Here is my snippet for checking time left on buffs (on yourself). _, _, _, _, _, duration, expirationTime, _, _, _, _ = UnitBuff("player","Inquisition"); t = GetTime(); timeRemaining = expirationTime - t; if (timeRemaining <= 6) then retV = "1"; else retV = "0"; end This will cast Inquisition when there is 6 seconds left on the buffs life. Great for spells that you want up 100% of the time. To get this to work, you might have to remove the line breaks, so it would actually look like.. _, _, _, _, _, duration, expirationTime, _, _, _, _ = UnitBuff("player","Inquisition");t = GetTime();timeRemaining = expirationTime - t;if (timeRemaining <= 6) hen retV = "1";else retV = "0";end
-
Inquisition + Templar's Verdict
It's updated, the Ret profile has two versions of Inquisition on it. The first one makes sure that it casts before timer runs out on the initial cast.