The forum is a good platform for asking or offering help with programmer mode scripts
LUA Scripts
MINIMUM BALANCE 0.001 This script works under the theory that the closer the last bet roll was to 50, there is an increased likelihood that the next roll will be closer to 0 or 100 than it is to 50. Even if my theory is garbage, the script is conservative, has some randomness, has static variation of high/low. It is pretty bust resistant.
Hello good script. Can you add to the script: losses - stop !?
one always needs to make some assumptions, thats the fun part in dice-script creation. and indeed, sum of all rolls converge to 50. i also used it in my own fallacies. all gambling ideas are garbage, you dont need the defend yourself beforehand, against a possible duche to make some bad comments.
can anyone make a stop loss in this without empty talk! ???
I'm just here enjoying the comments. But while I'm here, I do think it's the best script name I've seen for dicebot.
Don't use this script above 1 coin balance basebet = balance/10^5 this will bust placing big bet under, function dobet() nextbet = a/(99/chance) payout = (100-1)/chance multi = payout/(payout-1) nextbet = a/(payout/multi) nextbet = math.floor(nextbet*10^8)/10^8 which one of these "nextbet" line is getting used, can you tell? all of those "nextbet" are under function dobet(), not any specific condition! so which one is getting called?
checked only below line is used in the script on lose nextbet = math.floor(nextbet*10^8)/10^8 payout and multi both are useless in script