Advertisement
dicekode

shiba-only

Jul 1st, 2022 (edited)
2,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.24 KB | None | 0 0
  1. bet_multiplier = 0.000005
  2. target_sesi    = 5 -- persen
  3. target_balance = balance * 1.5
  4. ----------------------------
  5. minbet   = 1        
  6. basebet  = balance * bet_multiplier
  7. paystart = 40
  8. bethigh  = false  
  9. ctlose   = 0
  10. ctprofit = 0
  11. session  = balance * (target_sesi/100)
  12. payout   = paystart
  13. chance   = 99/payout
  14. nextbet  = basebet  
  15.  
  16. if nextbet < minbet then nextbet = minbet end  
  17.  
  18. function dobet()  
  19.     print("\n\n░▒▓█ PADEPOKAN DADU DICEKODE █▓▒░\n")
  20.     fn_simplestats()    
  21.     ctprofit += currentprofit    
  22.     if ctprofit > session then  
  23.         sleep(10000)
  24.         session  += balance * (target_sesi/100)
  25.         ctprofit = 0
  26.         basebet  = balance * bet_multiplier
  27.         nextbet  = basebet  
  28.     end
  29.  
  30.     if win then
  31.         bethigh = not bethigh
  32.         nextbet = basebet
  33.         payout  = paystart
  34.         ctlose  = 0
  35.     else
  36.         ctlose += 1
  37.         payout -= 0.08
  38.         if ctlose%5==0 then
  39.             nextbet = fn_incr(nextbet,25)
  40.         end
  41.     end
  42.      
  43.     if balance > target_balance then stop() end  
  44.     if nextbet < minbet then nextbet = minbet end  
  45.     chance = 99/payout
  46.     print("\n\n")
  47. end
  48.  
  49. function fn_incr(x,y)  
  50.     return x + (x * (y/100))  
  51. end  
  52.  
  53. simplestats_balhi = balance  
  54. simplestats_balst = balance
  55. simplestats_maxdrop,simplestats_profitc,simplestats_wager = 0,0,0  
  56. function fn_simplestats()
  57.     simplestats_wager += previousbet
  58.     simplestats_profitc += currentprofit
  59.     if (simplestats_profitc >= 0) then  
  60.         simplestats_profitc = 0
  61.         simplestats_balhi   = balance
  62.     end
  63.     simplestats_drop = simplestats_balhi - balance
  64.     if (simplestats_drop > simplestats_maxdrop) then
  65.         simplestats_maxdrop = simplestats_drop
  66.     end
  67.     print("░▒▓- Profit \t[ "..string.format("%.8f",profit).."\t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")  
  68.     print("░▒▓- Wager \t[ "..string.format("%.8f",simplestats_wager).."\t"..string.format("%.2f",simplestats_wager/simplestats_balst*100).."% ]")  
  69.     print("░▒▓- Dropdown \t[ "..string.format("%.8f",simplestats_maxdrop).."\t"..string.format("%.2f",simplestats_maxdrop/simplestats_balst*100).."% ]")  
  70. end
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement