The forum is a good platform for asking or offering help with programmer mode scripts
LUA Scripts
I advise you to play with an initial balance of at least 0.8 The script is well randomized to exclude loss on constant repetitions.
Testing now. Needs to establish ggh variable to avoid error. maybe ggh=4 before the placebet?
Why is the resetstats() in there? It really hampers stats tracking
hi, sorry but it is necessary
I am testing this on several dice sites with recomended balance of 0.8 LTC. I am using first version from author. 3 days pass, for now max minus 0.2 and recover. 24 h stats are 0.05 plus with 0.5 second delay in rolls. It is very low paying script. Anybody testing, please write results?
hi my result is 240k bets 0.3 ltc profit in 24 hours start balance 2 ltc basebet 0.000011ltc
why is this line here?: if (win) and (chance==33) then nextbet=base end you never happen == 33
hi,Forgot to remove, after making amendments
improved with basebet following increase of balance, target stop: --Script by GreenBaron --https://bot.seuntjie.com/scripts.aspx?id=5439 --base:rx is 1M:100K chance = 66 bdiv = 1000000 rxdiv = 100000 base = balance/bdiv --0.000001 nextbet = base rx = balance/rxdiv --0.00001 target = 1 --balance*2 function dobet() x = profit c = (x*(-1))*0.3 rx = c/26 if win then nextbet = previousbet+(balance/rxdiv) --rx chance = 66.6 cgg=1 cgh=4 else nextbet = c/cgh*cgg chance = 26 end if profit > 0.00000300 then resetstats() rx= balance/rxdiv --0.00001 cgg = 1 cgh = 4 nextbet=balance/bdiv --base end if nextbet<(balance/bdiv) then nextbet=(balance/bdiv) end if (currentstreak==-6) then cgg = 1.077 cgh = 1 end if (currentstreak==-14) then cgg = 1.21 cgh = 1 end if (win) and (chance==33) then nextbet=balance/bdiv --base end a = math.random(0,1) if(a==0) then a = false end if(a==1) then a = true end bethigh = a if (balance >= target) then stop() ching() end end
hi,thx,gj)