Advertisement
coinwalk

secret

Mar 5th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. fraction = 100
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 49.95
  5. nextbet = basebet
  6. bethigh = true
  7. oldbal = balance
  8. target = 5000
  9. sux = 0
  10. wage = 0
  11. ol = balance
  12. six = false
  13. box = basebet
  14. bot = 0
  15. fal = false
  16. vix = 0
  17. sox = 0
  18. resetstats()
  19.  
  20. function dobet()
  21. if (balance>=(ol+(base*2))) then
  22. nextbet = previousbet*2
  23. six = true
  24. ol = balance
  25. end
  26. if (balance<=(ol-base)) and six==false then
  27. nextbet = basebet
  28. base = nextbet
  29. end
  30. if (balance<=(ol-base)) and six==true then
  31. nextbet = basebet
  32. base = nextbet
  33. ol = balance
  34. six = false
  35. end
  36. if !win then
  37. bot+=1
  38. vix+=1
  39. sox+=1
  40. else
  41. vix = 0
  42. bot = 0
  43. sox = 0
  44. end
  45. if bot>=3 then
  46. ol = balance
  47. bot = 0
  48. end
  49. if vix>=5 then
  50. bethigh = !bethigh
  51. vix = 0
  52. end
  53. if nextbet<basebet then
  54. nextbet = basebet
  55. end
  56. if balance<=nextbet*50 then
  57. nextbet = basebet
  58. end
  59. if bets>=8 then
  60. if ((bets-wins)>=((bets/2)-sox)) and !win and fal==false then
  61. box = lastBet.Amount
  62. nextbet = 0
  63. fal = true
  64. end
  65. if ((bets-wins)<=(bets/2)) and win and fal==true then
  66. nextbet = box*2
  67. fal = false
  68. end
  69. if box<=basebet then
  70. box = basebet
  71. end
  72. end
  73. if (balance>=target) then
  74. stop()
  75. end
  76. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement