Advertisement
Baliarta

STAKER

Mar 19th, 2023
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. chance = 88.2
  2. base = 0.413
  3. nextbet = base
  4. wp = 0
  5. ws = 0
  6. ts = 0
  7. tp = 0
  8. rs = 0
  9. rp = 0
  10. ls = 0
  11. bethigh = true
  12. enablersc = false
  13. enablezz = false
  14. target = balance+15
  15. resetstats()
  16. resetchart()
  17. function dobet()
  18. if balance > target then
  19. bethigh = !bethigh
  20. stop()
  21. sleep(8971)
  22. start()
  23. end
  24.  
  25. rp += currentprofit
  26. tp += currentprofit
  27. wp += currentprofit
  28. rs += currentprofit
  29. ts += currentprofit
  30.  
  31. if (win) then
  32. ws += 1
  33. ls = 0
  34. chance = 94.2
  35. nextbet = previousbet*5
  36. if (lastBet.Amount>3.20) then
  37. resetpartialprofit()
  38. nextbet = base
  39. end
  40. else
  41. ls += 1
  42. ws = 0
  43. bethigh = !bethigh
  44. chance = 47.98
  45. nextbet = previousbet*1.07
  46. if (partialprofit<-0.01) then
  47. chance = 80.2
  48. bethigh = !bethigh
  49. resetpartialprofit()
  50. nextbet = base
  51. end
  52. end
  53. if (ws==4) then
  54. nextbet = base*3
  55. end
  56. if (ws==7) then
  57. nextbet = base*2
  58. end
  59. if (ls==1) then
  60. ls = 0
  61. chance = 80.2
  62. nextbet = base*18.93
  63. end
  64. if (rs<-10.0) then
  65. rs = 0
  66. ts = 0
  67. tp = 0
  68. rp = 0
  69. resetseed()
  70. end
  71. if (ts>1.0) then
  72. ts = 0
  73. rs = 0
  74. end
  75. if (tp>5.0) then
  76. tp = 0
  77. rp = 0
  78. rs = 0
  79. ts = 0
  80. resetseed()
  81. sleep(1)
  82. end
  83. if (rp<-1.0) then
  84. rp = 0
  85. tp = 0
  86. end
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement