Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --big weiner
- --https://bot.seuntjie.com/scripts.aspx?id=5362
- chance = 50 --Base Chance
- base = balance * 0.00000001 --Basebet
- base1 = balance * 0.00000002 --BasebetX2
- targetProfit = 0.00000000 --Profit amount
- target = balance+ targetProfit --Total Balance+Profit
- -------------------Dont Edit Below Risk-------------------
- base2 = base1
- nextbet = base
- bethigh = false
- rollcount = 23
- balance2 = balance
- betcount = 0
- counter = 0
- totalstreak = 0
- totalloss = 0
- totalwin = 0
- wincount = 0
- multiplier = 1.18
- multi = 1.14
- function dobet()
- if balance > balance2 then
- f = 0
- base2 = base * 1.5
- balance2 = balance
- else
- base2 = balance2 - balance
- if base2 < base * 1.5 then
- base2 = base * 1.5
- end
- end
- bethigh = true
- if rollcount == 23 then
- rollcount = 0
- else
- rollcount = rollcount + 1
- end
- if (balance) < (nextbet) then
- stop()
- print(balance)
- print("You lose!")
- end
- if (balance) >= target then
- stop()
- print("Profit reached: "..profit)
- end
- if (base2 < base1) then
- base2 = base1
- end
- chance = math.random(30, 55)
- print("base2 = "..base2)
- if (profit > 0) then
- base2 = base1
- end
- if win then
- chance = math.random(10, 15)
- nextbet = base
- else
- nextbet = previousbet * multiplier
- end
- if currentstreak == -1 then
- chance = math.random(10, 15)
- nextbet = base2 * 1.18
- end
- if currentstreak == -2 then
- chance = math.random(10, 15)
- nextbet = previousbet
- end
- if currentstreak == -2 then
- base2 = previousbet
- end
- if currentstreak == -3 then
- chance = math.random(10, 15)
- nextbet = previousbet
- end
- if currentstreak == -3 then
- base2 = previousbet
- end
- if currentstreak == -4 then
- nextbet = (balance2 - balance) * multiplier
- chance = math.random(15, 50)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement