Advertisement
coinwalk

lol

Mar 5th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. fraction = 100
  2. basebet = balance/fraction
  3. base = basebet
  4. chance = 49.95
  5. nextbet = basebet
  6. bethigh = false
  7. oldbal = balance
  8. target = 5000
  9. sux = 0
  10. wage = 0
  11. ol = balance
  12. six = false
  13. box = basebet
  14. bot = 0
  15. fal = false
  16. vix = 0
  17. sox = 0
  18. resetstats()
  19.  
  20. function dobet()
  21. if (balance>=(ol+base)) then
  22. nextbet = previousbet*2
  23. six = true
  24. ol = balance
  25. end
  26. if (balance<=(ol-(base*2))) and six==false then
  27. nextbet = previousbet/2
  28. base = nextbet
  29. end
  30. if (balance<=(ol-(base*2))) and six==true then
  31. nextbet = previousbet/2
  32. base = nextbet
  33. ol = balance
  34. six = false
  35. end
  36. if !win then
  37. bot+=1
  38. vix+=1
  39. sox = 0
  40. else
  41. vix = 0
  42. sox+=1
  43. end
  44. if bot>=3 then
  45. ol = balance
  46. bot = 0
  47. end
  48. if balance<=nextbet*50 then
  49. nextbet = basebet
  50. ol = balance
  51. end
  52. if (balance>=(oldbal*1.2)) then
  53. nextbet = balance/fraction
  54. basebet = balance/fraction
  55. ol = balance
  56. oldbal = balance
  57. end
  58. if bets>=8 then
  59. sox+=1
  60. end
  61. if sox>=1 then
  62. if ((wins)<=(bets/2)) and win and fal==false then
  63. box = lastBet.Amount
  64. nextbet = 0
  65. fal = true
  66. end
  67. if ((wins)>=((bets/2)+1)) and win and fal==true then
  68. nextbet = box*2
  69. fal = false
  70. end end
  71.  
  72. if (balance>=target) then
  73. stop()
  74. end
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement