Advertisement
dicekode

17-01-2023 -- 01

Jan 16th, 2023 (edited)
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. --DICEKODE
  2.  
  3. autobet = false
  4. basediv = 50000
  5. basebet = balance/basediv
  6. chance = 49.5
  7. nextbet = basebet
  8. ctlose = 0
  9. ctwin = 0
  10. sumlose = 0
  11. target = balance * 2
  12. stopwin = false
  13. maxbet = balance * 0.05
  14.  
  15. resetstats()
  16. resetseed()
  17. resetchart()
  18.  
  19. balhigh = balance
  20. baldrop = 0
  21. level = 0
  22.  
  23. function dobet()
  24.  
  25. if partialprofit > 0 then
  26. resetpartialprofit()
  27. if stopwin then pause() end
  28. balhigh = balance
  29. end
  30.  
  31.  
  32. if (bets%100 == 0) then bethigh = not bethigh end
  33.  
  34. if win then
  35. ctwin += 1
  36. ctlose = 0
  37. nextbet = nextbet-(nextbet*(20/100))
  38. chance = 38
  39. if (ctwin == 2) then
  40. ctwin = 0
  41. stopwin = false
  42. if autobet then
  43. nextbet = balance/basediv
  44. maxbet = balance * 0.05
  45. else
  46. nextbet = basebet
  47. end
  48. end
  49. else
  50. sumlose += 1
  51. ctlose += 1
  52. ctwin = 0
  53. nextbet = nextbet+(nextbet*(35/100))
  54. if (ctlose == 6) then
  55. nextbet += basebet
  56. end
  57. end
  58.  
  59. baldiff = balhigh - balance
  60. if (baldrop > baldiff) then baldrop = baldiff end
  61.  
  62. if (nextbet > maxbet) then stopwin = true end
  63. if (sumlose%10 == 0) then chance = 48 end
  64. if (balance > target) then stop() end
  65. if (level > ctlose and chance > 40) then level = ctlose end
  66.  
  67. print("")
  68. print("-=■ Level \t[ "..level.." ]")
  69. print("-=■ Dropdown \t[ "..string.format("%.2f",baldrop/(balhigh-baldrop)*100).."% ]")
  70.  
  71. end
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement