Advertisement
coinwalk

lol

Aug 28th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. fraction = 10000
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 49.95
  6. more = balance
  7. dim = 0
  8. rim = 0
  9. sem = 0
  10. sim = 0
  11. xim = 0
  12. bill = 0
  13. fim = 0
  14. fog = 0
  15. target = 100
  16. function dobet()
  17. if !win then
  18. rim+=1
  19. sem+=1
  20. fim+=1
  21. sim+=1
  22. else
  23. dim+=1
  24. sem+=1
  25. xim+=1
  26. sim+=1
  27. end
  28. if (rim>=2) then
  29. nextbet = previousbet*2
  30. end
  31. if rim<2 then
  32. nextbet = previousbet
  33. else
  34. if dim>=3 then
  35. nextbet = previousbet*2
  36. end
  37. end
  38. if (fim==xim) and (fim>0) then
  39. bill+=1
  40. else
  41. fog+=1
  42. end
  43. if (sem==6) then
  44. dim = 0
  45. rim = 0
  46. sem = 0
  47. end
  48. if (fog==3) then
  49. fog = 0
  50. end
  51. if (bill>=2) and (fim==xim) and (fim>0) and fog>=1 then
  52. nextbet = previousbet*2
  53. bill = 0
  54. fim = 0
  55. xim = 0
  56. fog = 0
  57. end
  58. if (sim==2) then
  59. fim = 0
  60. xim = 0
  61. sim = 0
  62. end
  63. if (balance >= (more*2)) and win then
  64. nextbet = basebet
  65. end
  66. if balance>target then
  67. stop()
  68. end
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement