Advertisement
dicekode

04-09-2024--002

Apr 9th, 2024
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | Cryptocurrency | 0 0
  1. basebet = 0.00000010
  2. nextbet = basebet
  3. chance  = 21.21
  4. target  = balance*1.1
  5. ctwin   = 0
  6.  
  7. function dobet()
  8.     if win then
  9.         ctwin   = ctwin+1
  10.         nextbet = basebet
  11.         chance  = 89
  12.         if (ctwin==20) then
  13.             ctwin  = 0
  14.             chance = 20
  15.         end
  16.     else
  17.         if chance < 50 then
  18.             nextbet = nextbet+(nextbet*(55/100))
  19.             chance  = chance+(chance*(1.5/100))
  20.             if math.abs(currentstreak)%8==0 then
  21.                 nextbet = nextbet-(nextbet*(14/100))
  22.                 chance  = chance-(chance*(11/100))
  23.             end
  24.         else
  25.             nextbet = nextbet+(nextbet*(10/100))
  26.         end
  27.     end
  28.     if balance>target then stop() end
  29. end
  30.  
  31.  
  32.  
Tags: Dicebot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement