I would to program the bot like this:
For example i have a balance of 0.00010000
Base bet: 10% of the bankroll
Betting chance: 13%
When i start to roll, the bot have to reset the base bet at 10% of the new balance:
- after 1st win
- after 10 loss in a row
Think that's possible in programmer mode, but i don't know how to program it...
Any chance?
Sorry I haven't replied to this. I started making a video but the power went out while i was busy and my windows started giving problems shortly after and i just haven't had a chance to finish it since.
I get API blocked (pretty sure this is what's happening) by 999dice for 5 minutes give or take after 10-15 bets, even though the bets seem to be calculating and placing properly.
I can run the example martingale script found on your website just fine for however long I want.
This doesn't make sense to me since all of these things (math, custom variable for storing extra data) are going on client side (or am I wrong?)
Please help.
I would to program the bot like this:
For example i have a balance of 0.00010000
Base bet: 10% of the bankroll
Betting chance: 13%
When i start to roll, the bot have to reset the base bet at 10% of the new balance:
- after 1st win
- after 10 loss in a row
Think that's possible in programmer mode, but i don't know how to program it...
Any chance?
Could you try to clarify?
As I understand you want to bet 10% of your bankroll, and update it to 10% after every win, so it's always 10%
You don't want to update it after every loss, you only want to update it to 10% after ten losses in a row...
But after 10 losses in a row you would have lost 10%*10=100% of your bankroll.. So your balance would be 0.??
it's possible that after a few losses you're getting an integer overflow error. Maybe try 10.8^8.0 instead and force the variables you're using into decimals wherever possible. This would cause you to try and place negative bets to 999dice.
As far as i understood his description, he wants to update his bet 10% of his bankroll after every win, and after every 10 losses in a row. so after 10 losses change bet, after 20 losses, change bet, etc etc. Seems like a flawed strategy to me though.