Advertisement
coinwalk

lol

Mar 2nd, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 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 = basebet
  14. resetstats()
  15.  
  16.  
  17. function dobet()
  18. if !win and (chance==80) then
  19. bill = lastBet.Amount
  20. nextbet = previousbet*2
  21. chance = 24
  22. stuff = 0
  23. end
  24. if !win and (chance==24) then
  25. nextbet = ((wagered/4)+bill)
  26. end
  27. if win and (chance==24) then
  28. bill = balance/fraction
  29. chance = 80
  30. end
  31. if (balance>=oldbal) then
  32. nextbet = balance/fraction
  33. bill = balance/fraction
  34. oldbal = balance
  35. resetstats()
  36. end
  37. if (balance>=target) then
  38. stop()
  39. end
  40. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement