maybe You can say, why this kind of stuff dsnt works?
if (losecount > 0) then
nextbet = previousbet+0.00000010
If first bet was 0.00000100, then he will make second one 0.00000254 and third 0.00000408, 0.00000562, 0.00000716, 0.00000870, with this command lines, why?!
maybe there is another simplies method, to do/make, that bot's add 0.000000xx amount for every 10 losed bets in row?! like first 10bets he add 1, next 10bets he add 1.1, next 10bets he add 1.2?!
Without seeing your whole script, it is impossible to say why that code is not working... but I'd guess that either it is not being executed due to conditional checks not resolving to what you think they should be (ie. you have an IF-ELSE statement that is not resolving correctly)... or you code somewhere else that is overriding your nextbet and increasing by 0.00000154 sats every bet instead of 0.00000010
Do you have settings from the basic/advanced tab set causing issues?
another issue is that bot making "fast doublebets" when amounts are bigger, and are night internet connection is better and dice site servers are less people.
sample:he need to stop when win and make basebet, but it can;t assimilate information or what, and make another big bet with last increasement... allmoust cant play if dont run two bots in same site...
The bot works in a sequential manner... it doesn't (can't) make a bet until it has processed the previous one. If the bot is not stopping/resetting when you think it should, it is most likely because your stop/reset conditions are wrong.
Again, perhaps your basic/advanced tab settings are causing problems...