Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- basebet = 1e-7
- payout = math.random(5,10)
- chance = 99 / payout
- won = 0
- lost = 0
- ls = 0
- target = balance * 1.1 --target profit
- stoplos = balance * 0.5 --stoploss
- tpsesi = balance * 0.01 --sesi profit
- rolls = 0
- cprofit = 0
- bethigh = true
- cls = 0
- if balance > 10 and balance < 100 then
- startbet = balance * 1e-6
- elseif balance > 100 then
- startbet = balance * 1e-7
- elseif balance > 1000 then
- startbet = balance * 1e-8
- else
- startbet = balance * 1e-5
- end
- nextbet = startbet
- function dobet()
- if balance > target then
- if (currency == "usdt") then
- currency = "trx"
- else
- currency = "usdt"
- end
- resetstats()
- resetseed()
- cprofit = 0
- sleep(60000)
- target = balance * 1.1 --target profit
- stoplos = balance * 0.5 --stoploss
- tpsesi = balance * 0.01 --sesi profit
- end
- if balance < stoplos then
- --stop()
- if (currency == "usdt") then
- currency = "trx"
- else
- currency = "usdt"
- end
- resetstats()
- resetseed()
- cprofit = 0
- sleep(60000)
- target = balance * 1.1 --target profit
- stoplos = balance * 0.5 --stoploss
- tpsesi = balance * 0.01 --sesi profit
- end
- cprofit += currentprofit
- ls += 1
- won += 1
- lost += 1
- rolls += 1
- if win then
- nextbet = startbet
- if chance > 12 then
- if (ls > 0 and ls < 10) then
- cls += 1
- end
- if cls > 2 then
- cls = 0
- boom = previousbet * 2
- nextbet = boom
- end
- end
- ls = 0
- else
- cekls = ls / 18
- if cekls < 1 then
- multi0 = (chance/100) * 1.25
- multi = 1+multi0
- elseif (cekls > 1 and cekls < 3) then
- multi0 = (chance/100) * 1.5
- multi = 1+multi0
- else
- multi0 = (chance/100) * 2
- multi = 1+multi0
- end
- nextbet = previousbet * multi
- end
- if cprofit > tpsesi then
- sleep(30000)
- cprofit = 0
- payout = math.random(500,1700)/100
- chance = 99 / payout
- nextbet = startbet
- target = balance * 1.1 --target profit
- stoplos = balance * 0.5 --stoploss
- tpsesi = balance * 0.01 --sesi profit
- end
- powerls = balance / nextbet
- print("\n\n░▒▓█ Test Nyekrip █▓▒░\n")
- print("░▒▓- Currency \t[ "..currency.." ]")
- print("░▒▓- Target \t[ "..string.format("%.8f",target).." ]")
- print("░▒▓- Power LS \t[ "..string.format("%.2f",powerls).." ]")
- print("░▒▓- TP Sesi \t[ "..string.format("%.8f",tpsesi).." ]")
- print("░▒▓- Sesi Profit \t[ "..string.format("%.8f",cprofit).." ]")
- print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement