Advertisement
Guest User

SCRIPT DICEBOT RISK V.4

a guest
Mar 16th, 2019
976
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. -- Please have at least 0.00100000 collateral
  2.  
  3. -- and set betcalc using one of the following
  4.  
  5. -- numbers, 7 loss streaks is usually the highest
  6.  
  7. -- result with 60k bets, 100k bets and over 180k bets I have
  8.  
  9. -- not yet seen a 8 loss streak.
  10.  
  11. -- 6 max losses (ludicrous) - 100.938608
  12.  
  13. -- 7 max losses (stupid) - 27.364138
  14.  
  15. -- 8 max losses (risky) - 7.3446286
  16.  
  17. -- 9 max losses (safe) - 1.9714477
  18.  
  19. -- 10 max losses (safest) - 0.5291766
  20.  
  21. -- 11 max losses (sleepy) - 0.1420417
  22.  
  23.  
  24.  
  25.  
  26.  
  27. betcalc = 0.1420417
  28.  
  29.  
  30.  
  31. --------------------------------------dont change anything after this line
  32.  
  33. --------------------------------------execpt you know what you do
  34.  
  35.  
  36.  
  37. if (betcalc < 0.01) then print("Please set betcalc then restart the script") stop() end
  38.  
  39.  
  40.  
  41. function changebet()
  42.  
  43.  
  44.  
  45. if (balance<=100.00000000) then
  46.  
  47.         print ("i'm so' crying,....loserr") stop()end
  48.  
  49. if (balance>=3000.00000000) then
  50.  
  51.         print ("i'm so' happy,....but i'm..The Winnerr") stop()end          
  52.  
  53.  
  54.  
  55.   randhilo= math.random(1,10)
  56.  
  57.     if(randhilo > 5) then
  58.  
  59.       return true
  60.  
  61.     else
  62.  
  63.       return false
  64.  
  65.     end
  66.  
  67. end
  68.  
  69.  
  70.  
  71. first = true
  72.  
  73. done = true
  74.  
  75. chance = 27.5
  76.  
  77. bethigh = changebet()
  78.  
  79. base = balance * (betcalc / 100000)
  80.  
  81. curbet = base * 3.7255
  82.  
  83. nextbet = base
  84.  
  85.  
  86.  
  87. function dobet()
  88.  
  89.   base = balance * (betcalc / 100000)
  90.  
  91.     if (first) then
  92.  
  93.        if not(win) then
  94.  
  95.           chance = 50
  96.  
  97.           nextbet = curbet
  98.  
  99.           first = false
  100.  
  101.           done = true
  102.  
  103.        else
  104.  
  105.           randswitch= math.random(1,10)
  106.  
  107.           if (randswitch > 4) then
  108.  
  109.              bethigh = changebet()
  110.  
  111.           end
  112.  
  113.        end
  114.  
  115.     end
  116.  
  117.  
  118.  
  119.    
  120.  
  121.    if (not(first) and not(done)) then
  122.  
  123.       if win then
  124.  
  125.          chance = 27.5
  126.  
  127.          curbet = base * 3.7255
  128.  
  129.          nextbet = base
  130.  
  131.          first = true
  132.  
  133.          done = true
  134.  
  135.          randswitch= math.random(1,10)
  136.  
  137.          if (randswitch > 7) then
  138.  
  139.             bethigh = changebet()
  140.  
  141.          end
  142.  
  143.       else
  144.  
  145.          curbet = curbet * 3.7255
  146.  
  147.          bethigh = changebet()
  148.  
  149.          nextbet = curbet
  150.  
  151.          chance = 72.5
  152.  
  153.      end
  154.  
  155.    end
  156.  
  157.  
  158.  
  159.    done = false
  160.  
  161.  
  162.  
  163. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement