Advertisement
Guest User

Crypto-games winning script!

a guest
Feb 26th, 2020
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. chance = 33
  2. base = balance/10000000
  3. nextbet = balance/10000000
  4. losecount = 0
  5. target = balance + balance/10
  6. a = 0
  7. i = balance*0.99
  8. k = 1400
  9. function dobet()
  10. if balance > target then stop() end
  11. if a==16 then
  12. bethigh=!bethigh
  13. resetseed()
  14. a=0
  15. end
  16. if win then
  17. a+=1
  18. nextbet = base
  19. chance = 20
  20. losecount = 0
  21. else
  22. nextbet = previousbet*1.33
  23. losecount+=1
  24. end
  25. if(i>k)then
  26. resetseed()
  27. print(" ") print("target: "..target)
  28. print("losecount: "..losecount)
  29. print("chance: "..chance)
  30. print("base: "..base)
  31. print(" ")
  32. end
  33. if (losecount >= 6) then
  34. nextbet = previousbet*1.33
  35. chance = 6
  36. end
  37. if (losecount >= 10) then
  38. nextbet = previousbet*1.33
  39. chance = 20
  40. end
  41. if (losecount >= 12) then
  42. nextbet = previousbet*1.33
  43. chance = 8
  44. end
  45. if (losecount >= 16) then
  46. nextbet = previousbet*1.55
  47. chance = 28
  48. end
  49. if ( losecount >= 18) then
  50. nextbet=previousbet*1.5
  51. chance = 13
  52. end
  53. if ( losecount >= 19) then
  54. nextbet=previousbet*1.51
  55. chance = 14.3
  56. end
  57. if ( losecount >= 20) then
  58. nextbet=previousbet*1.53
  59. chance = 15.5
  60. end
  61. if ( losecount >= 21) then
  62. nextbet=previousbet*1.56
  63. chance = 16.2
  64. end
  65. if ( losecount >= 22) then
  66. nextbet=previousbet*1.56
  67. chance = 16.68
  68. end
  69. if ( losecount >= 23) then
  70. nextbet=previousbet*1.56
  71. chance = 17.18
  72. end
  73. if ( losecount >= 25) then
  74. nextbet = previousbet*1.65
  75. chance = 36
  76. end
  77.  
  78. end
  79. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement