scriptdicebot2


SUBMITTED BY: khimnguyn11

DATE: Oct. 25, 2017, 8:51 a.m.

FORMAT: Text only

SIZE: 2.1 kB

HITS: 4061

  1. base=0.00000002
  2. -- Set This to The Target Amount of XMR You Want to Win
  3. target=balance+0.00010000
  4. -- DO NOT CHANGE ANYTHING BELOW UNLESS YOU KNOW WHAT YOU ARE DOING
  5. chance1 = 49.50
  6. multiplier=2
  7. nextbet = base
  8. losecount = 0
  9. betcount = 0
  10. bethigh=false
  11. highloss=0
  12. hibet=0
  13. totalloss=0
  14. totalwin=0
  15. wincount=0
  16. aveloss=0
  17. hbid=0
  18. counter=0
  19. e=0
  20. function dobet()
  21. e=currentstreak
  22. print(" ")
  23. print("Total Bet : "..betcount)
  24. print("Current Streak Loss : "..losecount)
  25. print("Highest Loss Streak : "..highloss)
  26. print("Average Loss Streak : "..string.format("%.2f",aveloss))
  27. print("Highest Bet : "..string.format("%.8f",hibet))
  28. print("Highest Win Bet ID : "..hbid)
  29. print("Profit : "..string.format("%.8f",profit))
  30. print(" ")
  31. print("Bet Amount : "..string.format("%.8f",nextbet))
  32. print("Current Balance : "..string.format("%.8f",balance))
  33. print(" ")
  34. if win then
  35. if highloss == losecount then
  36. hbid=lastBet.Id
  37. end
  38. nextbet = base
  39. wincount+=1
  40. totalwin+=1
  41. totalloss+=losecount
  42. aveloss=totalloss/totalwin
  43. losecount = 0
  44. betcount += 1
  45. if wincount==1 then
  46. bethigh=false
  47. end
  48. if balance==target then
  49. print("Congrats Your Target Profit Amount Reached")
  50. print(" ")
  51. stop()
  52. end
  53. else
  54. losecount += 1
  55. betcount += 1
  56. nextbet = base
  57. end
  58. if losecount > highloss then
  59. highloss = losecount
  60. end
  61. if e==0 then
  62. nextbet = base
  63. end
  64. if losecount==0 then
  65. nextbet = base
  66. chance=chance1
  67. end
  68. if losecount>=1 then
  69. nextbet=previousbet*multiplier
  70. chance = chance1
  71. end
  72. if nextbet > hibet then
  73. hibet=nextbet
  74. end
  75. if nextbet > balance then
  76. nextbet = base
  77. chance=chance1
  78. losecount=0
  79. print("Sorry not enough balance resetting back to base")
  80. print(" ")
  81. if base > balance then
  82. print("Sorry not enough balance to continue stopping session")
  83. print(" ")
  84. stop()
  85. end
  86. end
  87. end
  88. end
  89. endscript

comments powered by Disqus