Advertisement
coinwalk

mad ass manual

Aug 28th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. basebet = balance/1600
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 49.95
  5. more = balance
  6. dim = 0
  7. rim = 0
  8. sem = 0
  9. sim = 0
  10. xim = 0
  11. bill = 0
  12. fim = 0
  13. fog = 0
  14. target = 100
  15. function dobet()
  16. if !win then
  17. rim+=1
  18. sem+=1
  19. fim+=1
  20. sim+=1
  21. else
  22. dim+=1
  23. sem+=1
  24. xim+=1
  25. sim+=1
  26. end
  27. if (rim>2) then
  28. nextbet = previousbet*2
  29. end
  30. if rim<3 then
  31. nextbet = previousbet
  32. end
  33. if dim>=3 then
  34. nextbet = previousbet
  35. end
  36. if (fim==xim) and (fim>0) then
  37. bill+=1
  38. else
  39. fog+=1
  40. end
  41. if (sem==6) then
  42. dim = 0
  43. rim = 0
  44. sem = 0
  45. end
  46. if (fog==3) then
  47. fog = 0
  48. end
  49. if (bill>=2) and (fim==xim) and (fim>0) and fog<=2 then
  50. nextbet = previousbet*2
  51. bill = 0
  52. fim = 0
  53. xim = 0
  54. fog = 0
  55. end
  56. if (sim==2) then
  57. fim = 0
  58. xim = 0
  59. sim = 0
  60. end
  61. if balance>more then
  62. nextbet = basebet
  63. more = balance
  64. end
  65. if balance>target then
  66. stop()
  67. end
  68. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement