Advertisement
dicekode

30-05-2024--01

Mar 5th, 2024
812
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. basebet = balance*1e-7
  2. nextbet = basebet
  3. chance  = 15
  4. ctlose  = 0
  5. ctwin   = 0
  6. function dobet()
  7.     if win then
  8.         ctwin   = ctwin+1
  9.         ctlose  = 0
  10.         nextbet = basebet
  11.         if (ctwin%15==0) then
  12.             bethigh = not bethigh
  13.         end
  14.         chance  = math.random(110,200)/10
  15.     else
  16.         ctlose  = ctlose+1
  17.         nextbet = nextbet+(nextbet*(9/100))
  18.         if (ctlose==5) then
  19.             nextbet += basebet
  20.         end
  21.         if (ctlose==10) then
  22.             nextbet += basebet*2
  23.             bethigh = not bethigh
  24.         end
  25.         if (ctlose>12) then
  26.             nextbet = nextbet+(nextbet*(15/100))
  27.         end
  28.         if (ctlose%8==0) then
  29.             nextbet = nextbet-(nextbet*(2/100))
  30.         end
  31.     end
  32. end
  33.        
Tags: wolfbet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement