The forum is a good platform for asking or offering help with programmer mode scripts
LUA Scripts
I tested on 0.07 coin account when I moved the chance from 45 to 1 +1 up in 10 bets I won over 700%, not very smart I admit. I haven't changed anything since then and the script works very well. I wish you a lot of happy bets
ej bo mam lekki problem z tym skryptem pomoglbys? moje dc to hopson0001 jezeli bedziesz mial czas to napisz
-- Variables baseBet = 0.00000001 -- Initial bet current_round = 0 -- Current round number chance = 45 -- Initial win chance nextbet = 0.00000001 a = 0 -- Variable to accumulate bet values function dobet() -- Set the bet outcome (high or low) randomly bethigh = math.random() < 0.5 -- Calculate the next bet value based on the chance payout = (100 - 1) / chance multi = payout / (payout - 1) nextbet = a / (payout / multi) -- If won, reset round number and restore chance if win then a = 0 current_round = 0 chance = 45 nextbet = baseBet -- You may want to revert to `baseBet` here instead of recalculating else -- Update round number after a loss current_round = current_round + 1 -- Decrease chance by 1% after a loss chance = chance - 1 a = a - currentprofit -- Update 'a' value -- If chance falls below a certain threshold (e.g., 1%), you may want to reset or stop the script if chance < 1 then stop() -- Stops the script end end -- Additional safeguards for `nextbet` value if nextbet < baseBet then nextbet = baseBet end -- If `sitemin` variable exists, you may also add: -- if nextbet < sitemin then nextbet = sitemin end -- Round `nextbet` to 8 decimal places nextbet = math.floor(nextbet * 10^8) / 10^8 end
can you help me with my script? I dont know how to add lossstartmulti and if u can add it i will be verry glad base = 0.00000001 nextbet = base chance = 10 wincount = 0 losecount = 0 target = balance*1.033 bethigh = false w = 0 i = balance*0.998 k = 400 roll = 0 function dobet() roll+=1 if balance > target then stop() end if w==16 then resetseed() bethigh = !bethigh w = 0 end if win then w+=1 wincount+=1 nextbet = base chance = 10 losecount = 0 else wincount = 0 losecount+=1 nextbet = previousbet*1.3 end if roll>=50 and i>k then resetseed() withdraw(i,"DC9scvH1UvWaMxwY8MLLBcHNmssV7nKNsV") print(" ") print("target: "..target) print("nextbet: "..nextbet) print("chance: "..chance) print("Profit to go: "..target - balance) print(" ") end end if wincount==2 then wincount = 0 nextbet = previousbet*1.2 chance = 5 end if losecount >= 10 then chance = 15.9 end print(" ") print("Wincount: "..wincount) print("losecount: "..losecount) print(" ") end end end