Advertisement
Hackdicecode

Untitled

May 11th, 2025
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. chance = 90
  2. base = 0.1
  3. nextbet = base
  4. enablezz = false --set to true to use high/low switching
  5. --settings from advanced mode
  6.  
  7. enablesrc=false --set to true to use stop/reset conditions
  8. --settings from advanced mode
  9. payout = 0
  10. multi = 0
  11. prof = 0
  12. a = 1
  13. function dobet()
  14. if (a)==1 and win then
  15. prof = 0
  16. a = 0
  17. chance = 90
  18. nextbet = base
  19. end
  20. if !win then
  21. prof = prof-currentprofit
  22. end
  23.  
  24. if (currentstreak)==10
  25. then
  26. chance = math.random(100,200)/10
  27. bethigh = !bethigh
  28.  
  29. end
  30.  
  31. if chance<90 then
  32.  
  33. chance = math.random(100,300)/10
  34. payout = (100-1)/chance
  35. multi = payout/(payout-1)
  36. nextbet = prof/(payout/multi)
  37. a = 1
  38. end
  39. if bets%10000==0 then resetseed() end
  40.  
  41. if nextbet<base then nextbet=base end
  42.  
  43. nextbet = math.floor(nextbet*10^8)/10^8
  44. end
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement