Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- betcalc = 0.2
- -------------------------------------------
- nextbet = 0.000005
- chance = 95
- basebet = balance * (betcalc / 100000)
- bethigh = true
- losecount = 1
- target = 100-- Doge
- tprofit = balance + target
- function dobet()
- if(balance >= tprofit) then stop()
- print("Target Sudah Sesuai Dengan Modal :v GA lah GA")
- end
- if (win) then
- chance = math.random(88,95)
- nextbet = basebet
- losecount = 0
- end
- if (!win) then
- losecount += 1
- if (losecount > 1) then
- nextbet = previousbet*1.1
- chance = (1/(((nextbet+(nextbet-basebet))/nextbet)))*20
- if chance < 10.34 then
- chance = 5.23 end
- bethigh = !bethigh
- print ("Temukan Loss Sebanyak Yang Kau Mau")
- print(nextbet)
- print(chance)
- print(profit)
- print(bets)
- else
- nextbet = previousbet*1.05
- chance = (1/(((basebet+nextbet))/nextbet))*20
- if chance<10.34 then
- chance = 5.23 end
- bethigh = !bethigh
- print ("Temukan Loss Sebanyak Yang Kau Mau")
- print(nextbet)
- print(chance)
- print(profit)
- print(bets)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement