Everything posted by Womble
-
[Womble] Subtlety Rogue 5.4
Just pushed a new update Riskbling for your stealth, let me know if there's any issues.
- 5 comments
- 1 review
-
[Womble] Subtlety Rogue 5.4
Hey there Riskbling - I've not been active for some time now due to bot restrictions for what I wanted my profile to do but I'm back and giving it another shot. I'm fairly sure I can add a stealth option into the next release - I'll look into getting a release at the back end of this week. It's also good to see that my profile actually turned into quite a popular one (at least based on downloads) - as such I'll try to improve upon this profile and perhaps enable 6.0 compatibility.
- 5 comments
- 1 review
- requesting fight profile rogue sub bgs.
-
Behind Issues / Broken Rotation
Error is related to 'Is Behind' here's one screenshot example. It is at this moment my rotation resorts to Hemorrhage. It started off using backstab from behind to, but as the fight went on it started giving bad readings like this. It happens on various other fights as well. See PM.
-
Fight Class Won't Start (New Update Error)
Fixed already. :)
-
Fight Class Won't Start (New Update Error)
Here's what I get when I select my profile and click start: - [E] 14:24:08 - WRotation > Main > Start(): System.MissingMethodException: Method not found: 'Void robotManager.FiniteStateMachine.Engine.StartEngine(Byte, System.String, Boolean)'. at i8deC2nKp6UoZu9q0c.kq20Y1NCvV0ehWecy7.RYkfjmapm() at Main.Start()
-
Ultimatum Issues (Prot Warrior)
Right, it just looks like its pointing out an error, guess not. So, my finished HS is: - condiok = 0; local playerhealth = 100 * UnitHealth("player") / UnitHealthMax("player") if UnitPower("player") >= 85 or UnitBuff ("player",GetSpellInfo(122510)) and (playerhealth >= 75) then condiok = 1; end and my finished Cleave: - condiok = 0; local playerhealth = 100 * UnitHealth("player") / UnitHealthMax("player") if (UnitBuff ("player",GetSpellInfo(2565)) and (playerhealth >= 50) and UnitPower("player") >= 30) or UnitBuff ("player",GetSpellInfo(122510)) then condiok = 1; end I tried to play around and get '(playerhealth >= 50)' to work - at first I had no luck but then I managed to get it to work. The local playerhealth line basically works out the % of the players health if you do the math so I then attempted to get it to work at certain values. I assume the code is correct? They both seem to work properly with the AND's / OR's at least.
-
Ultimatum Issues (Prot Warrior)
Yea, to show there is an error between that piece of code I think. At least see my previous post, it 'fixes' it.
-
Ultimatum Issues (Prot Warrior)
I think 'UnitBuff("player",GetSpellInfo(122510))' should be 'UnitBuff("player"),GetSpellInfo(122510))' ? At least the error goes away then.
-
Ultimatum Issues (Prot Warrior)
I put the code you fixed into Notepad++ it shows this: - I assume the red line form top to bottom indicates an error?
-
Ultimatum Issues (Prot Warrior)
Also, what does 'local threat = UnitDetailedThreatSituation("player", "target")' do?
-
Ultimatum Issues (Prot Warrior)
Hi. Your code doesn't work: - condiok = 0; local playerhealth = 100 * UnitHealth("player") / UnitHealthMax("player") local targethealth = 100 * UnitHealth("target") / UnitHealthMax("target") local threat = UnitDetailedThreatSituation("player", "target") local start, duration, enabled = GetSpellCooldown(2565) if (start + duration - GetTime() > 0 and UnitPower("player") >= 85) or UnitBuff ("player",GetSpellInfo(122510)) or UnitBuff("player",GetSpellInfo(122016)) then condiok = 1; end but I decided to play around with it and can get it to work: - condiok = 0; local playerhealth = 100 * UnitHealth("player") / UnitHealthMax("player") local targethealth = 100 * UnitHealth("target") / UnitHealthMax("target") local threat = UnitDetailedThreatSituation("player", "target") local start, duration, enabled = GetSpellCooldown(2565) if UnitPower("player") >= 85) or UnitBuffID("player",122510) then condiok = 1; end The only difference is I took out 'if (start + duration - GetTime() >0' and then deleted the ')' after the UnitPower check since that closed bracket wasn't needed any more. I also removed the Incite check because I didn't want that in. It works like this, been watching it carefully. Out of curiosity though, why doesn't the Shield Block part of your 'HSProt.xml' work, any idea? These parts: 'local start, duration, enabled = GetSpellCooldown(2565) if (start + duration - GetTime() > 0'
-
Ultimatum Issues (Prot Warrior)
So I could just use the code you provided and it would work? What about the 'research' and 'var' values? Can these be left blank?
-
Can Wrotation be made more effective?
A lot of things can be improved with multiple conditions outside of lua. Certain things though like refreshing something before it falls off as far as I know needs an lua script or the above example where you want to watch 2 sets of durations and act differently above / below those times. But yeah, what Droidz says as well, try those. Let us know how the King Similie one works, sounds like the initial fight class just wasn't made that well tbh.
-
Can Wrotation be made more effective?
Tested the 5.4 frost dk profiel by King Similie - it seems to be using Frost Strike when KM is up and Obliterate is on CD. Is that the issue you wanted resolving? If so just try grabbing that. Most of the thinking is condition based. What you basically want to fix your issue is another version of your Frost Strike that has a buff condition checking for KM. That is assuming you already have a Frost Strike that's used to dump RP at certain amounts? If you're using your own then upload yours to here in a reply and I'll fix it.
-
Can Wrotation be made more effective?
Actually link the profile you're using, I'll go from there.
-
Can Wrotation be made more effective?
My sub profile is pretty mental I've got a lot of fake pooling and thinking going on. For example I have eviscerate using 2 lua scripts that check if there's at least 10 seconds left on slice and 10 on rupture (it's more like 12 and 8 seconds but just generalising) and if there is it will use 5 CP on an evis if not then it will build into anticipation (fake combo points, basically 5 anticipation is like having 10 CP). My slice and rupture abilities both refresh before they drop. I'm not 100% but I think I can sort that issue for you using some of the lua scripts I currently have in my profile, I'll play around with a frost profile tomorrow. But all that aside, sometimes its slow and it's not because of conditions - it just simply varies in speed on and off. The only issue I really have with it now sadly.
-
GetReactionTowards(WoWFactionTemplate otherFaction): System.NullReferenceException
I noticed the error in my log earlier although I didn't notice if it broke or affected my rotation.
-
Is Behind Backstab Else Sinister Strike
I already have 2 spells like that, I need it in one if possible hence lua script. My spells are fine but sometimes it ignores conditions and does whatever it pleases. I think it's the speed/effectiveness of the bot tbh.
-
Can Wrotation be made more effective?
I've actually got a thread up about this on the beta test forum, the rotation doesn't use abilities as soon as they are ready, it feels slow and sluggish quite often - which is a shame.
-
Ultimatum Issues (Prot Warrior)
Today I have something new, none rogue related. Until I get help regarding a couple of my rogue threads I decided to leave that rather than do further damage trying to improve it. I've now decided to make a protection warrior one to (the aim) a high level. Very simple problem I have, the proc, buff 'Ultimatum' doesn't seem to work at all when placed alongside Heroic Strike or Cleave. The buff gives you a rage free Heroic Strike or Cleave but doesn't work whether with a normal HS / Cleave or one using an lua script for either condition. I noticed someone who created one of the other protection warrior profiles also said he had the same issue.
-
Is Behind Backstab Else Sinister Strike
/bump
-
Behind Issues / Broken Rotation
/bump
- Warrior Tank Single target
-
Behind Issues / Broken Rotation
I mean, am I supposed to refer to Hemorrhage as 'Sinister Strike' when trying to identify a debuff (bleed) on my target. There are several issues at hand, things I am uncertain of but even then - I have tried almost every possible combination of things to fix these issues but they still persist, even with the new 'Is Behind'