Post
Topic
Board Gambling
Re: Yet Another PrimeDice Bot - Java (Faster than AutoBet!)
by
blayzer
on 12/04/2015, 03:32:06 UTC
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  Huh Also, it works perfectly with: 5 51.5 2.1 100000000, but when I try to edit it, it fucks up bad...  Cry
http://i.imgur.com/s1UIpr6.png

you need to find this part of the code:

Code:
if (direction.equals(LESS))
{
        direction = BIG;
}
else
{
        direction = LESS;
}

and change to

Code:
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