cryptomonkey

Dicebender#9

Oct 23rd, 2020
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.72 KB | None | 0 0
  1. --DONATE https://t.me/UnitedDice
  2. --BTC:
  3. --1F3KU6bu2zND8EW8nmV4AQHy6rNs3RYg3F
  4.  
  5. --DOGE:
  6. --DD8wBkFMjtxZ9ZbpZwfVj6Nb8V3tFzEV42
  7.  
  8. --ETH:
  9. --0xD78dB755C846841C0F39aE890C90e65df77eE235
  10.  
  11. --LTC:
  12. --LUNhaM6F5v4nA6tBw3PMirgDZfxfypmSd8
  13.  
  14. -- Target profit 10%
  15. -- DO NOT CHANGE ANYTHING IN THE SCRIPT OTHER THAN SHALLOWING THE BET
  16. chance1    = 70.71
  17. chance2    = 16
  18. chance3    = 19.8
  19. chance4    = 25
  20. chance5    = 28.29
  21. chance6    = 40.24
  22. chance7    = 47.1
  23. chance8    = 66
  24. chance9    = 10
  25. target     = balance*0.1
  26. prebet     = balance/1000000    -- ADD 0 TO SHRINK BASE BET
  27. betfactor  = 0.00001            -- CHANGE BETFACTOR HERE
  28. basebet    = balance*betfactor  
  29. nextbet    = prebet
  30. chance     = chance5
  31. bethigh    = false
  32. lostchance = 1
  33. losecount  = 0
  34. wincount   = 0
  35. trigger    = 0
  36. betcount   = 0
  37. preroll    = 65
  38. counter    = 0
  39. high       = 0
  40. low        = 0
  41. roll       = 0
  42. iflose1    = 3.5
  43. iflose2    = 1.25
  44. iflose3    = 1.3
  45. iflose4    = 1.38
  46. iflose5    = 1.43
  47. iflose6    = 1.7
  48. iflose7    = 1.8
  49. iflose8    = 2.5
  50. iflose9    = 1.15
  51. resetseed()
  52. counter=0
  53. p      = 0
  54. startb = balance
  55. currency   = 'doge'
  56. function dobet()
  57.     counter+=1
  58.     if counter == 25 then
  59.         print(" ")
  60.         print("Profit :"..string.format("%.8f",profit))
  61.         print(" ")
  62.         print("Current Balance : "..string.format("%.8f",balance))
  63.         print(" ")
  64.         print(" === https://t.me/UnitedDice === ")
  65.         counter=0
  66.     end
  67. p = balance - startb
  68.  
  69. loadgun()
  70. betroll()
  71. rstseed()
  72. viewstats()
  73. betcount+=1
  74. roll+=1
  75. if basebet>balance/100000 then  -- CHANGE BASEBET HERE
  76.     basebet = balance/100000    -- CHANGE BASEBET HERE
  77. end
  78. e=currentstreak+preroll
  79. if win then
  80.     goal()
  81.     loadgun()
  82.     basebet=balance*betfactor
  83.     if basebet<balance/100000 then  -- CHANGE BASEBET HERE
  84.     basebet = balance/100000        -- CHANGE BASEBET HERE
  85.     end
  86.     nextbet=prebet
  87.     wincount+=1
  88.     losecount=0
  89.     hilo()
  90.     if trigger==1 then
  91.         chance     = chance1
  92.         lostchance = 1
  93.         preroll    = 4 --70.71 --3.5
  94.     end
  95.     if trigger==2 then
  96.         chance     = chance2
  97.         lostchance = 2
  98.         preroll    = 25 --16 --1.25
  99.     end
  100.     if trigger==3 then
  101.         chance     = chance3
  102.         lostchance = 3
  103.         preroll    = 16 --19.8 --1.3
  104.     end
  105.     if trigger==4 then
  106.         chance     = chance4
  107.         lostchance = 4
  108.         preroll    = 15 --25 --1.38
  109.     end
  110.     if trigger==5 then
  111.         chance     = chance5
  112.         lostchance = 5
  113.         preroll    = 9 --28.29 --1.43
  114.     end
  115.     if trigger==6 then
  116.         chance     = chance6
  117.         lostchance = 6
  118.         preroll    = 8 --40.24 --1.7
  119.     end
  120.     if trigger==7 then
  121.         chance     = chance7
  122.         lostchance = 7
  123.         preroll    = 6 --47.1 --1.8
  124.     end
  125.     if trigger==8 then
  126.         chance     = chance8
  127.         lostchance = 8
  128.         preroll    = 5 --66 --2.5
  129.     end
  130.     if trigger==9 then
  131.         chance     = chance9
  132.         lostchance = 9
  133.         preroll    = 40 --10 --1.1
  134.     end
  135. else
  136.     losecount+=1
  137.     nexbet=prebet
  138.  
  139.     if lostchance==1 then
  140.     randomizer()
  141.         if e == 0 then  
  142.             chance=chance1
  143.             nextbet=basebet
  144.         end
  145.         if e <0 then
  146.             chance=chance1
  147.             nextbet=previousbet*iflose1
  148.         end    
  149.     end
  150.     if lostchance==2 then
  151.         if e == 0 then  
  152.             chance=chance2
  153.             nextbet=basebet
  154.         end
  155.         if e <0 then
  156.             chance=chance2
  157.             nextbet=previousbet*iflose2
  158.         end
  159.     end
  160.         if lostchance==3 then
  161.         if e == 0 then  
  162.             chance=chance3
  163.             nextbet=basebet
  164.         end
  165.         if e <0 then
  166.             chance=chance3
  167.             nextbet=previousbet*iflose3
  168.         end
  169.     end
  170.     if lostchance==4 then
  171.         if e == 0 then  
  172.             chance=chance4
  173.             nextbet=basebet
  174.         end
  175.         if e <0 then
  176.             chance=chance4
  177.             nextbet=previousbet*iflose4
  178.         end
  179.     end
  180.     if lostchance==5 then
  181.         -- randomizer()
  182.         if e == 0 then  
  183.             chance=chance5
  184.             nextbet=basebet
  185.         end
  186.         if e <0 then
  187.             chance=chance5
  188.             nextbet=previousbet*iflose5
  189.         end
  190.     end
  191.     if lostchance==6 then
  192.         if e == 0 then  
  193.             chance=chance6
  194.             nextbet=basebet
  195.         end
  196.         if e <0 then
  197.             chance=chance6
  198.             nextbet=previousbet*iflose6
  199.         end    
  200.     end
  201.     if lostchance==7 then
  202.             if e == 0 then  
  203.             chance=chance7
  204.             nextbet=basebet
  205.         end
  206.         if e <0 then
  207.             chance=chance7
  208.             nextbet=previousbet*iflose7
  209.         end    
  210.     end
  211.     if lostchance==8 then
  212.     randomizer()
  213.         if e == 0 then  
  214.             chance=chance8
  215.             nextbet=basebet
  216.         end
  217.         if e <0 then
  218.             chance=chance8
  219.             nextbet=previousbet*iflose8
  220.         end    
  221.     end
  222.     if lostchance==9 then
  223.         if e == 0 then  
  224.             chance=chance9
  225.             nextbet=basebet
  226.         end
  227.  
  228.         if e <0 then
  229.             chance=chance9
  230.             nextbet=previousbet*iflose9
  231.         end    
  232.     end
  233. end
  234. end
  235. function hilo()
  236.         if high > low then
  237.     bethigh=true
  238.         else
  239.     bethigh=false
  240.         end
  241.        if (high-low) > 5 then
  242.     bethigh=false
  243.         end
  244.         if (low-high)> 5 then
  245.     bethigh=true
  246.         end
  247. end
  248. function betroll()
  249.     if (lastBet.roll < chance) then
  250.         low += 1
  251.     end
  252.     if (lastBet.roll > (99.99 - chance)) then
  253.         high += 1
  254.     end
  255. end
  256. function rstseed()
  257.  
  258. if counter==500 then
  259.  
  260.     resetseed()
  261.     counter=0
  262.     low=0
  263.     high=0
  264. else
  265.     counter+=1
  266. end
  267. end
  268. function viewstats()
  269. print(" ")
  270. print("Total Total Bet: "..betcount)
  271. print("Total total loss : "..losecount)
  272. print("Total total wins : "..wincount)
  273. print("loss : "..(betcount-wincount))
  274. print("Total profit : "..string.format("%.8f",profit))
  275. print("Stop Profit : "..string.format("%.8f",target))
  276. print("Total Balance : "..string.format("%.8f",balance))
  277. print("High :"..high.." / ".."Low :"..low)
  278. print(" ")
  279. end
  280. function randomizer()
  281. r=math.random(10)
  282. if r>5 then
  283.     bethigh=true
  284. else
  285.     bethigh=false
  286. end
  287. end
  288. function loadgun()
  289. t=math.random(9)
  290.  
  291.     trigger=t
  292. end
  293. function goal()
  294. if profit>target then
  295.     stop()
  296.     print(" ")
  297.     print("Total!!!")
  298.     print(" ")
  299.     print("Total Wins : "..wincount)
  300.     print("Total Losses : "..(betcount-wincount))
  301.     print("Total Bet : "..betcount)
  302.     print("Profit : "..string.format("%.8f",profit))
  303.     print("Stop : "..string.format("%.8f",target))
  304.     print("Balance : "..string.format("%.8f",balance))
  305.     print(" ")
  306. else
  307. end
  308. end
Add Comment
Please, Sign In to add comment