Advertisement
Guest User

PasteToBin (Tue Jun 26 2018)

a guest
Jun 26th, 2018
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 5.13 KB | None | 0 0
  1.               -- Strategy - 5Point -Normal
  2. -- Developed by Cryptcoins
  3. -- Scripted by TheFrog, Cryptscoins
  4. -- Version V3.6.5 Stable
  5. -- Prime Dice donations cryptcoins - 3QzwQMVpkhF218mkZSbnnxpcVbbzBbYXdB
  6. -- Prime Dice donations thefrog - 3JuA2y7amCzCgHbr4LQN8YysGHpyBy72Ua
  7. --
  8. -- 14 Preroll script with Bet on 15th roll, resets and repeats.
  9.  
  10. -- What does it do:
  11. -- Bet is based on total balance that can handle a predefined total lost streak set by user.  
  12. -- Script will preroll 14 prerolls and compare the wins and the losses. then on the 15th roll it will bet 1 of 3 ways. Hi | Lo |NOBET
  13. -- based on that comparison.
  14.  
  15. -- if a Nobet, then the script will continue to next bet chance.
  16. -- if a los script will reset and again roll 14 prerolls, compare and bet again and martingaling the previous bet.
  17.  
  18. -- *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.
  19. -- **The makers/developers of this script are not liable for any and all loss; you are gambling
  20.  
  21. -- Usage: Set dicebot in programming mode,
  22. --        paste script in the code field
  23. --        to start: change tabs to console and type start() then hit enter key.
  24. --        to stop:  change tabs to console and type stop() then hit enter key.
  25. --      Absolute minimum balance should be 32768sat before starting
  26. --
  27. --      If u wanna change the amount of red rolls to 15 change newbase=(balance/(2^14)) to
  28. --      newbase=(balance/(2^15)), this need to be done on 2 places in the script!!
  29. --      Just to be safe dont go under 14 unless u wanna take more risk.
  30. --
  31. --  
  32. --      If u get error nextbet=x.xxxxxx u must manually make 1 bet
  33. --
  34. --      Profit indicator if your basebet is 100 sat u get arround 10k a hour
  35. --
  36. --      Tested with simulator on 600k rolls
  37. --      Tested with real bets on 300k rolls
  38.  
  39.  
  40. riesgo = 14
  41. trucaje = 0.001
  42.  
  43. newbase=(trucaje/(2^riesgo))
  44. betcount=0
  45. bethigh=true
  46. chance=49.5
  47. counter=0
  48. high=0
  49. loss=0
  50. losscount=0
  51. lostchance=0
  52. low=0
  53. multiplier=2
  54. prebet=0.00000000
  55. preroll=14
  56. resetseed()
  57. resetstats()
  58. session=0
  59. wincount=0
  60. wins = 0
  61. evencount = 0
  62. maxlosscount = 0
  63. maxwincount = 0
  64.  
  65. function dobet()
  66.     if betcount < preroll then
  67.     betcount = betcount+ 1
  68.         nextbet=prebet
  69.             if win then
  70.                 wins = wins+1
  71.             else
  72.                     loss = loss+1  
  73.            end                                      
  74.     end    
  75.    
  76.     if betcount == preroll or betcount > preroll then
  77.            if betcount == preroll then
  78.             wins = preroll - loss
  79.             betcount = betcount+1
  80.             count=wins-loss
  81.                if ((count==0) or (count==-10) or (count==10))  then
  82.                         nextbet=prebet
  83.                     evencount =1
  84.                         print("Resetting")
  85.                else
  86.  
  87.             if ((count == -12) or (count == -8) or (count == -6) or (count == -2)  or (count == 4 ) or (count == 8 ) or (count == 14 )) then
  88.                         if losscount==0 then
  89.                             newbase = (trucaje/(2^riesgo))
  90.                                     nextbet=newbase
  91.                             else
  92.                             nextbet=newbase*(2^losscount)
  93.                             bethigh=true
  94.                            
  95.                         end
  96.                     else
  97.                         if losscount==0 then
  98.                                 nextbet=newbase
  99.                         else
  100.                             nextbet=newbase*(2^losscount)
  101.                             bethigh=false
  102.                            
  103.                         end
  104.                     end
  105.                  end
  106.        
  107.     else
  108.             if evencount ==1 then
  109.                     print("maxwincount: ".. maxwincount)
  110.             print("maxlosscount: ".. maxlosscount)
  111.             print (string.format("New Base: %.8f", newbase))
  112.                 bethigh=true
  113.                 nextbet=prebet
  114.                 betcount=0
  115.                 wins=0
  116.                 loss=0
  117.                 resetstats()
  118.                 resetseed()
  119.                 evencount=0
  120.            
  121.             else
  122.                 if win then      
  123.                     wincount +=1
  124.                         if wincount > maxwincount then
  125.                             maxwincount = wincount
  126.                         end
  127.                     losscount=0
  128.             print("maxwincount: ".. maxwincount)
  129.             print("maxlosscount: ".. maxlosscount)
  130.                 print (string.format("New Base: %.8f", newbase))
  131.                     bethigh=true
  132.                     nextbet=prebet
  133.                     betcount=0
  134.                     wins=0
  135.                     loss=0
  136.                     resetstats()
  137.                     resetseed()
  138.                 else
  139.                      losscount +=1
  140.                         if losscount > maxlosscount then
  141.                             maxlosscount = losscount
  142.                         end
  143.                     wincount=0
  144.                     print("maxwincount: ".. maxwincount)
  145.             print("maxlosscount: ".. maxlosscount)
  146.                     print (string.format("New Base: %.8f", newbase))
  147.                     bethigh=true
  148.                     nextbet=prebet
  149.                     betcount=0
  150.                     wins=0
  151.                     loss=0
  152.                     resetstats()
  153.                     resetseed()
  154.                  end
  155.  
  156.             end
  157.            
  158.         end
  159.            
  160.     end
  161. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement