Post
Topic
Board Project Development
Re: Primedice Better Bot - Fastest, lightest, advanced java based bot
by
blayzer
on 25/04/2015, 03:00:57 UTC
also i think that there might be a problem with auto withdraw in script.
When it tries to do that, it receives the same error, over and over, and finally API block this account Smiley
So this might be a problem, now i blocked auto withdraw by setting 1Bitcoin so it wont withdraw for a loooong time and see what happens.

Also if you want to tune things up...

DATE       TIME         DEL BET ID   NONCE  ROLL  TARGET  STRK    BET PROFIT    SES PROFIT       BALANCE   WINS LOSSES  ROLLS   LUCK MAX
2015-04-21 12:36:01 294 4833505739  370994 64,13 < 20,00  3 17   -0,00000017    0,00014476    0,00366799    228    858   1086 104,97  38

In this code, it show MAX 38 - rounds using martiangle and specific options.
But this is calculated as bet*multiply^38 = MAX balance
but i saw that it screams "insuffiecent funds" on even 34/38 step
so this should be calculated as

bet*multiply^1 + bet*multiply^2 + bet*multiply^3 +bet*multiply^3 + ..... bet*multiply^38 <= Balance - then then MAX number will be correct.

Also if i will deposit or withdraw from webpage, scrips doesnt update balance.


Hi,

I'm sorry to hear that your account was blocked. I believe the withdraw setting should be set so that it doesn't withdraw too quickly. I appreciate the feedback, I'm looking at fixing that max bets, in the mean time, I find that using a multiplier works better for me. (option 2). It's a bit more difficult to compute but with an excel sheet, it's quite easy. The updating of balance has been fixed in the 1.3 release.

I use the following:

1   1.0000000000000000000000000
2   0.3333333333333330000000000
3   0.1428571428571430000000000
4   0.0666666666666667000000000
5   0.0322580645161290000000000
6   0.0158730158730159000000000
7   0.0078740157480315000000000
8   0.0039215686274509800000000
9   0.0019569471624266100000000
10   0.0009775171065493650000000
11   0.0004885197850512950000000
12   0.0002442002442002440000000
13   0.0001220852154804050000000
14   0.0000610388817676860000000
15   0.0000305185094759972000000
16   0.0000152590218966964000000
17   0.0000076294527393550100000
18   0.0000038147118175957400000
19   0.0000019073522707982500000
20   0.0000009536752259018190000
21   0.0000004768373855769090000
22   0.0000002384186359449950000
23   0.0000001192093037616380000
24   0.0000000596046483281045000
25   0.0000000298023232758738000
26   0.0000000149011614158923000
27   0.0000000074505806524349800
28   0.0000000037252903123397000
29   0.0000000018626451527004000
30   0.0000000009313225754828400

The number on the left is the maximum bets you want to set. This is all based on 49.5% win chance and a 2.0 multiplier on loss.

Example, if you want 16 maximum bets based on your balance then set 0.0000152590218966964 as your multiplier and set 2 as your bet mode. If you have .01BTC then this sets the base bet at 0.00000153 and grows as your balance grows maintaining the 16 max bet setting.

I'm just cleaning up some code and I'll be releasing a newer version for you all to test out.

Thanks!