Advertisement
coinwalk

cris

Mar 19th, 2020
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. bethigh = true
  2. good = 2
  3. prebet = balance/1024000
  4. nextbet = prebet
  5. box = 0
  6. min = 49.95
  7. cox = 49
  8. kill = 70
  9. killme = 30.5
  10. chance = cox
  11. bit = 0
  12. bits = 0
  13. boxs = 0
  14. max = 50.5
  15. function dobet()
  16. if win then
  17. chance = cox
  18. nextbet = prebet
  19. bethigh = true
  20. end
  21. if (chance==min) and !win then
  22. nextbet = previousbet*2.5
  23. end
  24. if (chance==kill) and !win then
  25. nextbet = previousbet*4
  26. end
  27. if lastBet.Roll > min then
  28. box += 1
  29. bit = 0
  30. end
  31. if lastBet.Roll < max then
  32. bit += 1
  33. box = 0
  34. end
  35. if lastBet.Roll > kill then
  36. boxs += 1
  37. bits = 0
  38. end
  39. if lastBet.Roll < killme then
  40. bits += 1
  41. boxs = 0
  42. end
  43. if (chance == cox) and (bit==9) then
  44. bethigh = false
  45. nextbet = balance/10240
  46. chance = min
  47. bit = 0
  48. box = 0
  49. end
  50. if (chance == cox) and (box==9) then
  51. bethigh = true
  52. nextbet = balance/10240
  53. chance = min
  54. box = 0
  55. bit = 0
  56. end
  57. if (chance == cox) and (bits==7) then
  58. bethigh = true
  59. nextbet = balance/7200
  60. chance = kill
  61. bits = 0
  62. boxs = 0
  63. end
  64. if (chance == cox) and (boxs==7) then
  65. bethigh = false
  66. nextbet = balance/7200
  67. chance = kill
  68. boxs = 0
  69. bits = 0
  70. end
  71. if balance > good then
  72. stop()
  73. end
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement