Advertisement
dicekode

Axyadix BTC

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