Advertisement
Guest User

Untitled

a guest
May 20th, 2018
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.76 KB | None | 0 0
  1. -- Strategy - Threetwo
  2. -- Version 1.2
  3. -- Developed by Cryptcoins
  4. -- Scripted by TheFrog, Cryptscoins
  5. -- Risk Factor: 8
  6. --
  7. -- Readme
  8. -- About
  9. -- Script will preroll 14 and compare wins and losses. Next roll will bet 1 of 3 ways based on comparison. Hi | Lo | NOBET
  10. -- if Nobet, script will continue to next bet chance.
  11. -- if loss, script will reset, preroll, compare and bet again, this time martingaling the previous bet.
  12. -- first 2 martingale bets are set with multiplierone next 8 set with mulitpliertwo. script auto stops on 10 loss streak
  13. --
  14. -- Usage
  15. -- Set dicebot in programming mode and paste script in the code field
  16. -- to start or stop: change tabs to console and type start() or stop() then hit enter key.
  17. --
  18. -- Donations
  19. -- Prime Dice: cryptscoins
  20. -- Wallet: 3QzwQMVpkhF218mkZSbnnxpcVbbzBbYXdB
  21. --
  22. -- Prime Dice: thefrog
  23. -- Wallet: 3JuA2y7amCzCgHbr4LQN8YysGHpyBy72Ua
  24. --
  25. -- ~~~~~~~
  26. -- Updates
  27. -- updated to 2 bets at mulitplier1 and 8bets at mulitplier2. defaulted stoponloss to 9
  28. --
  29. -- ~~~~~~~
  30. -- Errors
  31. -- *if u get error nextbet=x.xxxxxxx, trying to start(), make a manual bet by clicking the bet hi or bet lo buttons on dicebot.
  32. -- **developers not liable for any and all loss you may experience. you are gambling. use script at own risk.
  33. --
  34. --
  35. -- #########EDIT###########
  36. -- how many losses in a row do u want until script stops
  37. stoponloss=9
  38. --
  39. -- how many rolls until a random seed reset
  40. rseed=1000
  41. --
  42. -- What are the multipliers
  43. -- 10 bets total. stops on 10 loss streak
  44. --
  45. --2 bets @ multiplier
  46. multiplierone=3
  47. --8 bets @ multiplier
  48. multipliertwo=2
  49. --
  50. -- Bet 1 sat per 10k.
  51. -- script defaulted to micro test bet
  52. -- to bet 1 sat: tick test>base to turn off and untick live>base to turn on.
  53. --test
  54. base=0.000000001
  55. --live
  56. --base=0.00000001
  57.  
  58. --########DONT EDIT########
  59. rtseed=0
  60. betcount=0
  61. bethigh=true
  62. chance=49.5
  63. counter=0
  64. high=0
  65. loss=0
  66. losscount=0
  67. lostchance=0
  68. low=0
  69. prebet=0.00000000
  70. preroll=14
  71. resetseed()
  72. resetstats()
  73. session=0
  74. wincount=0
  75. wins = 0
  76. evencount = 0
  77. maxlosscount = 0
  78. maxwincount = 0
  79.  
  80. function dobet()
  81. rtseed +=1
  82. if rtseed == rseed then
  83. resetseed()
  84. rtseed=0
  85. end
  86.  
  87.  
  88.  
  89. if betcount < preroll then
  90. betcount = betcount+ 1
  91. nextbet=prebet
  92. if win then
  93. wins = wins+1
  94. else
  95. loss = loss+1
  96. end
  97. end
  98.  
  99. if betcount == preroll or betcount > preroll then
  100. if betcount == preroll then
  101. wins = preroll - loss
  102. --print("Wins: ".. wins)
  103. --print("Loss: ".. loss)
  104. betcount = betcount+1
  105. count=wins-loss
  106. if ((count==0) or (count==-10) or (count==10)) then
  107. nextbet=prebet
  108. evencount =1
  109. print("Resetting")
  110. else
  111. print ("Win count: "..wincount)
  112. print ("Loss count: "..losscount)
  113.  
  114.  
  115.  
  116. if ((count == -12) or (count == -8) or (count == -6) or (count == -2) or (count == 4 ) or (count == 8 ) or (count == 14 )) then
  117.  
  118. betlossbalance =(base*multiplierone^2) + (base*multiplierone^1) + base
  119. print (string.format("Bet Loss Balance: %.8f", betlossbalance))
  120.  
  121.  
  122. if losscount == stoponloss then
  123. stop()
  124. end
  125. if losscount == 0 then
  126. nextbet= base
  127. bethigh=true
  128. end
  129. if losscount == 1 then
  130. nextbet= base*multiplierone^1
  131. bethigh=true
  132. end
  133. if losscount == 2 then
  134. nextbet= base*multiplierone^2
  135. bethigh=true
  136. end
  137. if losscount == 3 then
  138.  
  139. nextbet= betlossbalance*multipliertwo^1
  140. bethigh=true
  141. end
  142. if losscount == 4 then
  143.  
  144.  
  145. nextbet= betlossbalance*multipliertwo^2
  146. bethigh=true
  147. end
  148. if losscount == 5 then
  149.  
  150.  
  151. nextbet= betlossbalance*multipliertwo^3
  152. bethigh=true
  153. end
  154. if losscount == 6 then
  155.  
  156.  
  157. nextbet= betlossbalance*multipliertwo^4
  158. bethigh=true
  159. end
  160. if losscount == 7 then
  161.  
  162.  
  163. nextbet= betlossbalance*multipliertwo^5
  164. bethigh=true
  165. end
  166. if losscount == 8 then
  167.  
  168.  
  169. nextbet= betlossbalance*multipliertwo^6
  170. bethigh=true
  171. end
  172. if losscount == 9 then
  173.  
  174.  
  175. nextbet= betlossbalance*multipliertwo^7
  176. bethigh=true
  177. end
  178. if losscount == 10 then
  179.  
  180.  
  181. nextbet= betlossbalance*multipliertwo^8
  182. bethigh=true
  183. end
  184. if losscount == 11 then
  185. stop()
  186. end
  187.  
  188.  
  189. else
  190.  
  191. betlossbalance =(base*multiplierone^2) + (base*multiplierone^1) + base
  192. print (string.format("Bet Loss Balance: %.8f", betlossbalance))
  193.  
  194.  
  195. if losscount == stoponloss then
  196. stop()
  197. end
  198. if losscount == 0 then
  199. nextbet= base
  200. bethigh=false
  201. end
  202. if losscount == 1 then
  203. nextbet= base*multiplierone^1
  204. bethigh=false
  205. end
  206. if losscount == 2 then
  207. nextbet= base*multiplierone^2
  208. bethigh=false
  209. end
  210. if losscount == 3 then
  211.  
  212. nextbet= betlossbalance*multipliertwo^1
  213. bethigh=false
  214. end
  215. if losscount == 4 then
  216.  
  217.  
  218. nextbet= betlossbalance*multipliertwo^2
  219. bethigh=false
  220. end
  221. if losscount == 5 then
  222.  
  223.  
  224. nextbet= betlossbalance*multipliertwo^3
  225. bethigh=false
  226. end
  227. if losscount == 6 then
  228.  
  229.  
  230. nextbet= betlossbalance*multipliertwo^4
  231. bethigh=false
  232. end
  233. if losscount == 7 then
  234.  
  235.  
  236. nextbet= betlossbalance*multipliertwo^5
  237. bethigh=false
  238. end
  239. if losscount == 8 then
  240.  
  241.  
  242. nextbet= betlossbalance*multipliertwo^6
  243. bethigh=false
  244. end
  245. if losscount == 9 then
  246.  
  247.  
  248. nextbet= betlossbalance*multipliertwo^7
  249. bethigh=false
  250. end
  251. if losscount == 10 then
  252.  
  253.  
  254. nextbet= betlossbalance*multipliertwo^8
  255. bethigh=false
  256. end
  257. if losscount == 11 then
  258. stop()
  259. end
  260.  
  261.  
  262. end
  263.  
  264. end
  265.  
  266. else
  267. if evencount ==1 then
  268. --print("wincount: ".. wincount)
  269. --print("losscount: ".. losscount)
  270. print("Total Wins: ".. maxwincount)
  271. print("Total Loss: ".. maxlosscount)
  272. --print (string.format("New Base: %.8f", newbase))
  273. bethigh=true
  274. nextbet=prebet
  275. betcount=0
  276. wins=0
  277. loss=0
  278. resetstats()
  279. --resetseed()
  280. evencount=0
  281.  
  282. else
  283. if win then
  284. wincount +=1
  285. if wincount > maxwincount then
  286. maxwincount = wincount
  287. end
  288. losscount=0
  289. -- print("wincount: ".. wincount)
  290. -- print("losscount: ".. losscount)
  291. print("Total Wins: ".. maxwincount)
  292. print("Total loss: ".. maxlosscount)
  293. -- print (string.format("New Base: %.8f", newbase))
  294. bethigh=true
  295. nextbet=prebet
  296. betcount=0
  297. wins=0
  298. loss=0
  299. resetstats()
  300. -- resetseed()
  301. else
  302. losscount +=1
  303. if losscount > maxlosscount then
  304. maxlosscount = losscount
  305. end
  306. wincount=0
  307. -- print("wincount: ".. wincount)
  308. -- print("losscount: ".. losscount)
  309. print("Total Wins: ".. maxwincount)
  310. print("Total loss: ".. maxlosscount)
  311. -- print (string.format("New Base: %.8f", newbase))
  312. bethigh=true
  313. nextbet=prebet
  314. betcount=0
  315. wins=0
  316. loss=0
  317. resetstats()
  318. -- resetseed()
  319. end
  320.  
  321. end
  322.  
  323. end
  324.  
  325. end
  326. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement