Advertisement
coinwalk

snowy

Aug 13th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. fraction = 50000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 20
  6. target = 100000
  7. james = balance
  8. zim = 0
  9. zye = 0
  10. lye = 0
  11. him = 0
  12. vim = 0
  13. kim = 0
  14. mim = 0
  15. butch = false
  16. function dobet()
  17. if win then
  18. zim+=1
  19. kim+=1
  20. vim = 0
  21. else
  22. vim+=1
  23. kim+=1
  24. end
  25. if (vim==1) and (chance==20) and (zim<=1) then
  26. chance = 24
  27. nextbet = previousbet*3
  28. vim = 0
  29. end
  30. if (vim==1) and (chance==24) then
  31. chance = 49.95
  32. zye+=1
  33. nextbet = previousbet*3
  34. end
  35. if (zim==1) then
  36. mim+=1
  37. zim = 0
  38. end
  39. if (mim>=1) then
  40. butch = true
  41. end
  42. if (butch==true) and (chance==20) then
  43. chance = 24
  44. nextbet = previousbet
  45. zim = 0
  46. end
  47. if (butch==true) and (chance==24) and !win then
  48. chance = 49.95
  49. mim = 0
  50. butch = false
  51. nextbet = previousbet*3
  52. end
  53. if (math.fmod(kim,1)==0) and (chance==49.95) then
  54. nextbet = previousbet*2
  55. lye+=1
  56. end
  57. if (lye>=1) and (math.fmod(kim,4)==0) and (chance==49.95) and !win then
  58. chance = 95
  59. nextbet = previousbet*100
  60. lye = 0
  61. him+=1
  62. end
  63. if(him==1) then
  64. chance = 95
  65. nextbet = previousbet*3
  66. end
  67. if (nextbet==nil) then
  68. nextbet = previousbet
  69. end
  70. if balance>james and win then
  71. nextbet = balance/fraction
  72. chance = 20
  73. kim = 0
  74. mim = 0
  75. butch = false
  76. lye = 0
  77. him = 0
  78. james = balance
  79. end
  80. if balance>target then
  81. stop()
  82. end
  83. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement