Advertisement
coinwalk

cool

Mar 3rd, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. fraction = 5000
  2. basebet = 0.01
  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. sux = 0
  14. resetstats()
  15.  
  16.  
  17. function dobet()
  18. if !win and (chance==80) then
  19. nextbet = previousbet*2
  20. chance = 24
  21. end
  22. if !win and (chance==24) then
  23. nextbet = ((wagered/3)+basebet)
  24. sux+=1
  25. end
  26. if win and (chance==24) then
  27. sux = 0
  28. chance = 80
  29. end
  30. if sux>=5 then
  31. nextbet = previousbet*10
  32. chance = 80
  33. sux = 0
  34. end
  35. if (balance>=oldbal) then
  36. nextbet = basebet
  37. sux = 0
  38. oldbal = balance
  39. resetstats()
  40. end
  41. if (balance>=target) then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement