Advertisement
coinwalk

lol

Mar 2nd, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 80
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. shit = 0
  10. stuff = 0
  11. sex = 0
  12. smck = 0
  13. bill = 0
  14. resetstats()
  15.  
  16.  
  17. function dobet()
  18. if !win and (chance==24) then
  19. nextbet = ((wagered/4)+bill)
  20. end
  21. if !win and (chance==80) then
  22. bill = lastBet.Amount
  23. nextbet = previousbet*2
  24. chance = 24
  25. stuff = 0
  26. end
  27. if win and (chance==24) then
  28. chance = 80
  29. end
  30. if (balance>=oldbal) then
  31. nextbet = balance/fraction
  32. oldbal = balance
  33. resetstats()
  34. end
  35. if (balance>=target) then
  36. stop()
  37. end
  38. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement