Advertisement
dicekode

12-02-2022 -- 01

Dec 1st, 2022
1,104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. --Kyo Watanabe
  2. --01-12-2022
  3. --Set om Hog
  4.  
  5. bigbase   = balance * 1e-5
  6. smallbase = bigbase / 6.7
  7. bigch     = 90
  8. bethigh   = true
  9. nextbet   = bigbase
  10. chance    = bigch
  11.  
  12. resetstats()
  13. resetchart()
  14. resetseed()
  15.  
  16. function dobet()
  17.     if(partialprofit > 0) then
  18.         resetpartialprofit()
  19.     end
  20.  
  21.     if (win) then
  22.         nextbet = bigbase
  23.         chance  = bigch
  24.     else
  25.         if (chance < 20) then
  26.             nextbet = nextbet + (nextbet * (6.8 / 100))
  27.         else
  28.             nextbet = previousbet * 1.55
  29.         end
  30.  
  31.         if(currentstreak == -1) then
  32.             nextbet = smallbase
  33.             chance  = math.random(310, 340) / 100  
  34.         end
  35.  
  36.         if (currentstreak == -50) then
  37.             chance  = math.random(2350, 2450) / 100
  38.             nextbet = math.abs(partialprofit)
  39.         end
  40.        
  41.         if (currentstreak < -61) then
  42.             nextbet = math.abs(partialprofit) / ((99/chance) - 1)
  43.         end
  44.     end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement