This is not working for me when I put the first [target] @ 10, it worked fine for a bit, then when I check, it was changing to a 90% win rate after 5 losses? I'm sooo confused
Also, it works perfectly with: 5 51.5 2.1 100000000, but when I try to edit it, it fucks up bad...
http://i.imgur.com/s1UIpr6.png you need to find this part of the code:
if (direction.equals(LESS))
{
direction = BIG;
}
else
{
direction = LESS;
}
and change to
if (direction.equals(LESS))
{
direction = BIG;
target = (100 - target);
}
else
{
direction = LESS;
target = (100 - target);
}
Then recreate the jar file
I've created the jar file with the mentioned fix just in case you wanted to test it right away. All code is untouched except for the change I mentioned above.
http://www28.zippyshare.com/v/EQPtMShx/file.html