Advertisement
coinwalk

lol

Sep 21st, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. fraction = 160
  2. fractor = 40
  3. basebet = balance/fraction
  4. bilbet = balance/fractor
  5. chance = 49.95
  6. nextbet = basebet
  7. bethigh = false
  8. james = balance
  9. targetone = balance*2
  10. target = balance*4000
  11. bin = 0
  12. falcon = balance
  13. cunt = 0
  14. blunt = 0
  15. slim = 0
  16. lol = 0
  17. kill = 0
  18. resetstats()
  19. function dobet()
  20. if !win then
  21. lol+=1
  22. kill+=1
  23. bin+=1
  24. cunt+=1
  25. blunt = 0
  26. else
  27. cunt = 0
  28. lol = 0
  29. kill +=1
  30. blunt +=1
  31. end
  32. if kill>1 then
  33. nextbet = previousbet*2
  34. end
  35. if lol>1 then
  36. bethigh = !bethigh
  37. end
  38. if (cunt>=4) and !win then
  39. nextbet = 0
  40. slim+=1
  41. end
  42. if (blunt>=1) and slim>=1 then
  43. nextbet = bilbet
  44. slim = 0
  45. blunt = 0
  46. end
  47. if nextbet>balance then
  48. basebet = balance/fraction
  49. nextbet = basebet
  50. end
  51. if balance>targetone then
  52. nextbet = basebet
  53. end
  54. if balance>target then
  55. stop()
  56. end
  57. if balance>james and win then
  58. nextbet = basebet
  59. bin = 0
  60. blunt = 0
  61. slim = 0
  62. cunt = 0
  63. kill = 0
  64. lol = 0
  65. james = balance
  66. end
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement