Advertisement
coinwalk

lol

Mar 16th, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. fraction = 5000
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 33
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 50000
  9. sux = 0
  10. wage = base
  11. bim = 0
  12. resetstats()
  13.  
  14.  
  15. function dobet()
  16. wage = wage+previousbet
  17. if (!win) and (chance==33) then
  18. nextbet = wage/2
  19. bim+=1
  20. end
  21. if (win) and (chance==33) then
  22. nextbet = wage/2
  23. end
  24. if bim>=2 then
  25. bethigh = !bethigh
  26. chance = 49.95
  27. bim = 0
  28. end
  29. if (!win) and (chance==49.95) then
  30. nextbet = wage
  31. sux = sux+1
  32. end
  33. if (win) and (chance==49.95) then
  34. bethigh = !bethigh
  35. sux = 0
  36. chance = 33
  37. end
  38. if (sux>=3) then
  39. nextbet = wage/2
  40. bethigh = !bethigh
  41. chance = 33
  42. bim = 0
  43. sux = 0
  44. end
  45. if (balance>=oldbal) then
  46. nextbet = basebet
  47. sux = 0
  48. bim = 0
  49. wage = base
  50. oldbal = balance
  51. end
  52. if (balance>=target) then
  53. stop()
  54. end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement