Advertisement
coinwalk

yes

Mar 26th, 2020
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. chance = math.random(75.00*100.0, 85.00*100.0)/100.0
  2. multiplier = 1.7
  3. base = balance/100000
  4. nextbet = base
  5. bethigh = false
  6. rollcount = 7
  7. jib = balance/400000
  8. job = balance/100000
  9. function dobet()
  10.  
  11. --Randomizer
  12. r=math.random(2)
  13.  
  14. if r == 1 then
  15. bethigh=true
  16. else
  17. bethigh=false
  18. end
  19. -- bets
  20. if win then
  21. chance = math.random(75.00*100.0, 85.00*100.0)/100.0
  22. nextbet = math.random(jib*100000000,job*100000000)/99900000.0
  23. else
  24. chance = math.random(35.00*100.0, 45.00*100.0)/100.0
  25. nextbet = previousbet * multiplier
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement