dicekode

dicekode-longplay

Oct 23rd, 2020 (edited)
711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.47 KB | None | 0 0
  1. min      = 10.5
  2. man      = 16
  3. max      = 60
  4. chance   = max
  5. base     = (balance / 500) * 0.0005
  6. nextbet  = base  
  7. bethigh  = false
  8. multi    = 1.1191
  9. somu1f1  = 0
  10. somu2f1  = 1
  11. somu1f2  = 1.4
  12. somu2f2  = 1.02
  13. point1   = 10
  14. point2   = 20
  15. g        = 0
  16. f1       = true
  17. profitf1 = 0
  18. nx1      = 1
  19. f1stw    = 0
  20. f1stl    = 0
  21. f1x      = true  
  22. f2       = false
  23. profitf2 = 0
  24. nx2      = 1
  25. f2st     = 0
  26. target   = balance * 2
  27. limit    = -balance * 0.5
  28. limit1   = limit
  29. step     = balance * 0.01
  30. step1    = step
  31.  
  32. function dobet()
  33.    
  34.     bethigh = (math.random(100) >= 50)
  35.     chance  = math.random(min*100,man*100)/200
  36.    
  37.     if profit > step then
  38.         step  = step1 + profit
  39.         limit = limit1 + profit
  40.     end
  41.    
  42.     if f1 then
  43.         if win then
  44.             bethigh = true
  45.             chance  = max
  46.             f1x     = false
  47.             if (f1stw >= 1) or (f1stl >= 1) then
  48.                 nextbet = base/10
  49.                 g       = 0
  50.                 min     = 10.5
  51.                 nx1     = 1
  52.                 f1stw   = 0
  53.                 f1x     = true
  54.             else
  55.                 nx1 += somu1f1
  56.                 f1stw += 1
  57.                 nextbet = base/10
  58.             end
  59.             f1stl = 0
  60.         else
  61.             f1stw = 0
  62.             if (f1stl >= point1) then
  63.                 nextbet = base/10
  64.                 nx2     = nx1
  65.                 f2      = true
  66.                 g       = 0
  67.                 min     = 10.5
  68.                 f1stl   = 0
  69.                 f1stw   = 0
  70.                 nx1     = 1
  71.                 f1      = false
  72.             else
  73.                 if f1x then
  74.                     nextbet = base/10
  75.                 else
  76.                     g+=0.5
  77.                     min    = 10.5
  78.                     chance = (min+g)
  79.                     nx1 += somu2f1
  80.                     f1stl += 1
  81.                     nextbet = base * (multi^nx1)
  82.                 end
  83.             end
  84.         end
  85.     end
  86.  
  87.     if f2 then
  88.         if win then
  89.             if (f2st >= 1) then
  90.                 g       = 0
  91.                 min     = 10.5
  92.                 f1      = true
  93.                 f2      = false
  94.                 f1x     = true
  95.                 nextbet = base/10
  96.                 nx2     = 1
  97.                 f2st    = 0
  98.             else
  99.                 g = 0
  100.                 nx2 += somu1f2
  101.                 nextbet = base * (multi^nx2)
  102.                 f2st += 1  
  103.             end
  104.         else
  105.             if (f2st >= 1) and (f2st < point2) then
  106.                 bethigh = false
  107.                 g+=0.19
  108.                 m      = 10.5
  109.                 chance = (m-g)
  110.                 nx2 += somu2f2
  111.                 nextbet = base * (multi^nx2)
  112.                 f2st += 1
  113.             else
  114.                 nextbet = base/10
  115.                 f2st    = 0
  116.             end
  117.         end
  118.     end
  119.    
  120.     profitnow = profit / (balance-profit) * 100
  121.     nextbet   = math.ceil(nextbet*10^8)/10^8
  122.     if profit - nextbet < limit then stop() end
  123.     print("\n\n")
  124.     print("DICEKODE DICE SCRIPT -- Telegram @dicekode")
  125.     print("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n")
  126.     print("--------------------------------------")
  127.     print("Profit so far: "..string.format("%.2f",profitnow).."%")
  128.     print("Stop Lose: "..string.format("%.5f",limit))
  129.     print("Step: "..string.format("%.5f",step))
  130.     print("--------------------------------------")
  131.    
  132. end
Add Comment
Please, Sign In to add comment