Advertisement
coinwalk

so cool

Jul 27th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. fraction = 9999
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = true
  5. be = 0
  6. moi = 0
  7. chance = 24
  8. more = balance
  9. target = 30000
  10. mit = balance
  11. bastards = 0
  12. bastard = 0
  13. mok = 0
  14. zim = 0
  15. function dobet()
  16. if win then
  17. moi+=1
  18. mok+=1
  19. bastards = 0
  20. bastard = 0
  21. zim+=1
  22. else
  23. be+=1
  24. zim = 0
  25. end
  26. if (be==4) then
  27. nextbet = previousbet*2
  28. be = 0
  29. end
  30. if (bethigh==true) and (moi==3) then
  31. bethigh = !bethigh
  32. moi = 0
  33. end
  34. if (bethigh==false) and (moi==3) then
  35. bethigh = !bethigh
  36. moi = 0
  37. end
  38. if (mok>=2) and (balance>more) then
  39. nextbet = basebet
  40. more = balance
  41. mok = 0
  42. end
  43. if (bethigh==false) and (lastBet.Roll>76) and !win then
  44. bastards+=1
  45. end
  46. if (bethigh==true) and (lastBet.Roll<24) and !win then
  47. bastard+=1
  48. end
  49. if (bastards>=2) then
  50. bethigh = !bethigh
  51. bastards = 0
  52. end
  53. if (zim>=2) and (moi==2)then
  54. moi = 0
  55. zim = 0
  56. end
  57. if (bastard>=2) then
  58. bethigh = !bethigh
  59. bastard = 0
  60. end
  61. if balance>target then
  62. stop()
  63. end
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement