Advertisement
coinwalk

such lua

Jul 28th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. fraction = 9999
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. be = 0
  6. moi = 0
  7. chance = 24
  8. more = balance
  9. target = 1
  10. mit = balance
  11. bastards = 0
  12. bastard = 0
  13. mok = 0
  14. zim = 0
  15. mile = 0
  16. mole = 0
  17. nik = 0
  18. nin = 0
  19. function dobet()
  20. if win then
  21. moi+=1
  22. mok+=1
  23. zim+=1
  24. nik = 0
  25. else
  26. be+=1
  27. nik+=1
  28. zim = 0
  29. end
  30. if (be==4) then
  31. nin+=1
  32. nextbet = previousbet*2
  33. be = 0
  34. end
  35. if (nin==1) and (nik==7) then
  36. be = 0
  37. nextbet = previousbet*2
  38. nin = 0
  39. nik = 0
  40. end
  41. if (bethigh==true) and (moi==2) then
  42. bethigh = !bethigh
  43. moi = 0
  44. end
  45. if (bethigh==false) and (moi==2) then
  46. bethigh = !bethigh
  47. moi = 0
  48. end
  49. if (mok>=2) and (balance>more) then
  50. nextbet = basebet
  51. more = balance
  52. mok = 0
  53. end
  54. if (bethigh==false) and (lastBet.Roll>76) and !win then
  55. bastards+=1
  56. end
  57. if (bethigh==true) and (lastBet.Roll<24) and !win then
  58. bastard+=1
  59. end
  60. if (lastBet.Roll<24) and win then
  61. mole+=1
  62. end
  63. if (lastBet.Roll>76) and win then
  64. mile+=1
  65. end
  66. if (mile==3) then
  67. mile = 0
  68. end
  69. if (mole==3) then
  70. mole = 0
  71. end
  72. if nextbet>balance then
  73. nextbet = balance
  74. end
  75. if (bastards>=2) then
  76. bethigh = !bethigh
  77. bastards = 0
  78. end
  79. if (zim>=2) and (mile==2) or (zim>=2) and (mole==2)then
  80. moi = 0
  81. moi = 0
  82. zim = 0
  83. end
  84. if (bastard>=2) then
  85. bethigh = !bethigh
  86. bastard = 0
  87. end
  88. if balance>target then
  89. stop()
  90. end
  91. end
  92.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement