dicekode

dicekode-faucet3-notedityet

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