Advertisement
coinwalk

wicked

Aug 14th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. fraction = 9600
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = true
  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*2
  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. butch = true
  37. end
  38. if (butch==true) and (chance==20) then
  39. chance = 24
  40. nextbet = previousbet
  41. zim = 0
  42. end
  43. if (butch==true) and (chance==24) and !win then
  44. chance = 49.95
  45. mim = 0
  46. butch = false
  47. nextbet = previousbet*3
  48. end
  49. if (math.fmod(kim,1)==0) and (chance>=49) and (chance<=51) then
  50. lye+=1
  51. end
  52. if (lye>=1) and (butch==false) and (lastBet.Chance>=49) and (lastBet.Chance<=51) and !win then
  53. chance = 95
  54. nextbet = previousbet*25
  55. lye = 0
  56. him+=1
  57. end
  58. if (math.fmod(kim,1)==0) and (lastBet.Chance>=80) then
  59. chance = 95
  60. nextbet = previousbet*4
  61. end
  62. if (nextbet==nil) then
  63. nextbet = previousbet
  64. end
  65. if balance>james and win then
  66. nextbet = balance/fraction
  67. chance = 20
  68. kim = 0
  69. mim = 0
  70. zim = 0
  71. butch = false
  72. lye = 0
  73. him = 0
  74. james = balance
  75. end
  76. if balance>target then
  77. stop()
  78. end
  79. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement