-
Posts
551 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Posts posted by Zan
-
-
Profiles for skinning, herbs, and ore are very easy to make. I'll be looking into making some dungeon farming profiles when I get the chance. It'll be a huge learning curve for me but I'll have time in a few weeks to test those waters :)
-
It's good and bad though. It'll be good money wise for Droidz. But bad in that we'll be dealing with a lot of people who expect WRobot to be similar to HB. Hopefully some good HB devs come over and contribute to this bot :)
-
If you're referring to HB then no it's not compatible. But it's easy to make your own on WRobot.
-
2 hours ago, Hotmeup said:
Hi, I am thinking about purchasing Wrobot but I was just wondering if the bot still gathers nodes which are in the water such as the Vash'jir area
Yes it does
-
Every bot was caught in the last banwave. That was the first for this one.
-
Wow just got a patch, so yes.
-
I just googled https://valhalla-realms.com/ I'm not sure if WRobot works on it though.
-
-
Put this in the thread of the Fight Class you're using so the developer can fix it.
-
Download one from here -> Fight Classes. Then put it into the FightClass folder in WRobot
-
What exactly do you mean by opening?
-
That can work randomly if the interrupt is not on global cool down. From my experience humans normally interrupt towards the end. That's the PVP'er in me. But that is your opinion and i respect it.
-
Value is in milliseconds so 1 second would be 1000. Also it should be less than or equal to. This will interrupt it towards the end of the cast. I use 1000 when it's off global cool down. Otherwise I use 1500 or 1250 if it's not. Also add the spell condition referring to is casting and interruptable. That way you don't waste an interrupt. I'm sorry if I don't remember the exact name of the conditions. I'm not able to access WoW at this very moment to bring it up :)
-
You could do a Cast time left and choose something like less than 1000 ms. It'll interrupt right before the end of their cast.
-
You have:
new SpellState("Ice Lance", 6, context => FrostmagePvESettings.CurrentSetting.IceLance && wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(44544) >= 2, false, true, false, false, true, true, true, true, 0, false, false, false, false, false, false, wManager.Wow.Helpers.FightClassCreator.YesNoAuto.Auto, "", "none", true, true, false),
Try:
new SpellState("Ice Lance", 6, context => FrostmagePvESettings.CurrentSetting.IceLance && ObjectManager.Me.BuffStack("Fingers of Frost") >= 2, false, true, false, false, true, true, true, true, 0, false, false, false, false, false, false, wManager.Wow.Helpers.FightClassCreator.YesNoAuto.Auto, "", "none", true, true, false),
With >= 2 in the last statement you're telling the bot to ONLY cast it when Fingers of Frost's Stack is at 2 or more. Therefore when it casts Ice Lance it will go to 1 stack of Fingers of Frost and wait until it has 2 stacks to cast again. You could also try ObjectManager.Me.HaveBuff("Fingers of Frost") instead of ObjectManager.Me.BuffStack("Fingers of Frost") >= 2. Doing this will cast Ice Lance whenever you have the Fingers of Frost buff.
You have:
new SpellState("Flurry", 5, context => FrostmagePvESettings.CurrentSetting.Flurry && wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(190447) >= 1, false, true, false, false, true, true, true, true, 0, false, false, false, false, false, false, wManager.Wow.Helpers.FightClassCreator.YesNoAuto.Auto, "", "none", true, true, false),
Try:
new SpellState("Flurry", 5, context => FrostmagePvESettings.CurrentSetting.Flurry && ObjectManager.Me.HaveBuff("Brain Freeze") && SpellManager.IsSpellOverlayed("Flurry"), false, true, false, false, true, true, true, true, 0, false, false, false, false, false, false, wManager.Wow.Helpers.FightClassCreator.YesNoAuto.Auto, "", "none", true, true, false),
IsSpellOverlayed refers to when a spell has a proc and lights up the spell on your action bar.
-
Did you try using ("Spell Name") instead of (Spell Id)? I used the Spell name method for both and SpellManager.IsSpellOverlayed("Flurry"). With ObjectManager.Me.BuffStack(44544) >= 2 It will only cast it when it's at 2 stacks. It won't cast it twice in a row. Just one cast.
-
Is it not casting either of them? or just Flurry and not Ice Lance? I've been working on a Frost Mage PVE at the moment. I don't feel it's ready for release yet though.
-
it's in the drop down list: Buff Time Left Target
-
On the Fight Class editor you can use one of the last 2 options on the drop down list.
-
53 minutes ago, Droidz said:
Hello, your problem seem resolved: http://wrobot.eu/files/file/769-zans-unholy-death-knight/
Yes it is. I figured it out :)
-
I overlook things as well. :-)
-
-
Try my rough draft I have. I still need to add a few things like AOE. But you can see how my Metamorphosis is setup.
-
10 minutes ago, Bvsed said:
The bigger issue you'll have is the demonic fury (at least in my experience so far) condition doesn't work.
What are you looking to do with the condition? I'll be posting my Destro Lock one very soon and I don't use it as a condition at all.
On 8/11/2016 at 3:32 PM, speters28 said:I am trying to tweak out a havoc class but am having an issue getting the Metamorphosis to work. Any thoughts or help would be greatly appreciated.
Attached is my current working build.
thanks
I'm working on one for Havoc at the moment and Metamorphosis is working. It'll be a few days for that one. I want to tweak it out as much as I can.
Conversion tool?
in General assistance
Posted
I've never seen the conversion tool and I don't think one exists. I have seen people say it can be done but no links to a tool.