Advertisement
coinwalk

Untitled

Feb 21st, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. chance = 47.5 --2x
  2. basebet = 0.01
  3. floatingbasebet = basebet
  4. target = 5
  5. amountup = 6.9
  6. amountdown = 2.9
  7. lumptenbase = (basebet*10)
  8. sevenbasebet = (basebet*6.9)
  9. amountlumps = 1
  10. tag = balance
  11. older = balance
  12. oldbalanceone = balance
  13. oldbalancetwo = balance
  14. balancenow = balance
  15. nextbet = basebet
  16. bethigh = false
  17. fudge = false
  18. yeah = 0
  19. resetstats()
  20.  
  21.  
  22. function dobet()
  23. if (win) then
  24. balancenow = balancenow+floatingbasebet
  25. else
  26. balancenow = balancenow-floatingbasebet
  27. end
  28. if (balancenow>(oldbalanceone+(floatingbasebet*amountup))) then
  29. nextbet = floatingbasebet*2;
  30. floatingbasebet = floatingbasebet*2;
  31. amountup = 4.9;
  32. amountdown = 4.9;
  33. amountlumps = 1;
  34. fudge = true;
  35. yeah = 0;
  36. oldbalanceone = (balancenow);
  37. end
  38. if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (math.fmod(yeah,2)==0) and (yeah>=2)) then
  39. amountup = 4.9;
  40. amountdown = 9.9;
  41. yeah = yeah+1;
  42. oldbalanceone = (balancenow);
  43. end
  44. if ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (math.fmod(yeah,2)==0) and (yeah>=2)) then
  45. amountup = 4.9;
  46. amountdown = 9.9;
  47. yeah = yeah+1;
  48. oldbalanceone = (balancenow);
  49. end
  50. if (((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (not(math.fmod(yeah,2)==0))) or ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==false) and (yeah<2))) then
  51. nextbet = floatingbasebet*2;
  52. floatingbasebet = floatingbasebet*2;
  53. amountlumps = 0;
  54. amountup = 4.9;
  55. amountdown = 4.9;
  56. yeah = yeah+1;
  57. oldbalanceone = (balancenow);
  58. end
  59. if (((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (not(math.fmod(yeah,2)==0))) or ((balancenow<(oldbalanceone-(floatingbasebet*amountdown))) and (fudge==true) and (yeah<2))) then
  60. nextbet = floatingbasebet*2;
  61. floatingbasebet = floatingbasebet*2;
  62. amountup = 4.9;
  63. amountdown = 4.9;
  64. yeah = yeah+1;
  65. oldbalanceone = (balancenow);
  66. end
  67. if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow<(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
  68. oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
  69. oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
  70. amountup = 6.9;
  71. amountlumps = 1;
  72. fudge = false;
  73. yeah = 0;
  74. amountdown = 2.9;
  75. nextbet = basebet;
  76. floatingbasebet = basebet;
  77. end
  78. if ((balancenow>(oldbalancetwo+(lumptenbase*amountlumps))) and (balancenow>(oldbalancetwo+(((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase)+sevenbasebet)))) then
  79. oldbalanceone = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
  80. oldbalancetwo = oldbalancetwo+((math.floor((balancenow-oldbalancetwo)/lumptenbase))*lumptenbase);
  81. amountup = 4.9;
  82. amountlumps = 1;
  83. fudge = false;
  84. yeah = 0;
  85. amountdown = 4.9;
  86. nextbet = basebet*2;
  87. floatingbasebet = basebet*2;
  88. end
  89. if (balancenow>target) then
  90. return
  91. end
  92. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement