Xcesius
Community Developer
- Joined
- May 1, 2011
- Messages
- 2,050
So, the story begins when a russian hc raider tells me he gets better dps using LazyRaider. So I start investigating this, I started removing flags to see if that was the case. However what Bobby didn't know, is that he wrote a simple code that makes the framelock more efficient during execution of the rotation.
Now here's the small code that does some magic :
I was kinda surprised with the result from a very small sample of testers. All of them which had gained a small to a medium dps boost, so I give you AlexBot! A modified RaidBot with the LazyRaider code.
So please test and give feedback!
Small negative impact : You might notice a little more fps drop than usual, but the dps should be higher.
Does not work on Laptop's, if you are on a laptop. Use Tyrael or Raid Bot
This will be added to Tyrael in near future if the results are positive. This has NO Arena/RBG/BG Support, as it is RaidBot from Base. I do not wish to support PvP due to HB reasons.
Credits goes out to Apoc for the RaidBot base and Bobby for the LazyRaider code snippet.
Now here's the small code that does some magic :
Code:
private Composite CreateFrameFactory(params Composite[] children) {
if (LockMemorySettingEnabled)
return new FrameLockSelector(children);
return new PrioritySelector(children);
}
I was kinda surprised with the result from a very small sample of testers. All of them which had gained a small to a medium dps boost, so I give you AlexBot! A modified RaidBot with the LazyRaider code.
So please test and give feedback!
Small negative impact : You might notice a little more fps drop than usual, but the dps should be higher.
Does not work on Laptop's, if you are on a laptop. Use Tyrael or Raid Bot
This will be added to Tyrael in near future if the results are positive. This has NO Arena/RBG/BG Support, as it is RaidBot from Base. I do not wish to support PvP due to HB reasons.
Credits goes out to Apoc for the RaidBot base and Bobby for the LazyRaider code snippet.