Advertisement
dicekode

11-23-2022 -- 01

Nov 23rd, 2022 (edited)
821
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.76 KB | None | 0 0
  1.  
  2. btrasio = (balance/5)
  3. basebet = btrasio * 0.0002
  4. chancex = 95.03
  5. chancey = 3.2
  6. iflose  = 6.8
  7. maxlose = 124
  8. target  = 10
  9. nextbet = basebet
  10. chance  = chancex
  11. stopwin = false
  12.  
  13. resetstats()
  14.  
  15. function dobet()
  16.  
  17.     if win then
  18.         if stopwin then stop() end
  19.         nextbet = basebet
  20.         chance  = chancex
  21.     else
  22.         if (currentstreak == -1) then
  23.             chance = chancey
  24.         end
  25.         if (currentstreak == -2) then
  26.             nextbet = btrasio * 0.00003
  27.         end
  28.         nextbet = nextbet + (nextbet * (iflose / 100))
  29.     end
  30.     if currentstreak < -maxlose then stopwin = true end
  31.     if balance > target then stop() end
  32.     print("\n █-□ Profit:\t[ " ..string.format("%.2f",profit/(balance-profit)*100).. "% ]\t")
  33. end
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement