Advertisement
dicekode

02-01-2023 -- 01

Jan 1st, 2023 (edited)
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 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. levelx = 0
  23.  
  24. function dobet()
  25.  
  26. if partialprofit > 0 then
  27. resetpartialprofit()
  28. if stopwin then pause() end
  29. balhigh = balance
  30. end
  31.  
  32.  
  33. if (bets%100 == 0) then bethigh = not bethigh end
  34.  
  35. if win then
  36. ctwin += 1
  37. levelx = 0
  38. ctlose = 0
  39. nextbet = nextbet-(nextbet*(20/100))
  40. chance = 38
  41. if (ctwin == 2) then
  42. ctwin = 0
  43. stopwin = false
  44. if autobet then
  45. nextbet = balance/basediv
  46. maxbet = balance * 0.05
  47. else
  48. nextbet = basebet
  49. end
  50. end
  51. else
  52. sumlose += 1
  53. ctlose += 1
  54. ctwin = 0
  55. nextbet = nextbet+(nextbet*(35/100))
  56. if (ctlose == 6) then
  57. nextbet += basebet
  58. end
  59. if (chance > 40) then levelx += 1 end
  60. end
  61.  
  62. baldiff = balhigh - balance
  63. if (baldiff > baldrop) then baldrop = baldiff end
  64.  
  65. if (nextbet > maxbet) then stopwin = true end
  66. if (sumlose%10 == 0) then chance = 48 end
  67. if (balance > target) then stop() end
  68. if (levelx > level) then level = levelx end
  69.  
  70. print("")
  71. print("-=■ Level \t[ "..levelx.."/"..level.." ]")
  72. print("-=■ Dropdown \t[ "..string.format("%.8f",baldrop).." | "..string.format("%.2f",baldrop/(balhigh-baldrop)*100).."% ]")
  73.  
  74. end
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement