Advertisement
coinwalk

just do it

Apr 13th, 2020
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. chance = 49.95
  2. lol = 0
  3. bethigh = false
  4. good = 20000
  5. nextbet = balance/100000
  6. basebet = balance/100000
  7. bal = balance
  8. zog = 0
  9. zim = 0
  10. zag = 0
  11. six = 0
  12. sit = 0
  13. function dobet()
  14.  
  15. if (win) then
  16. chance = 49.95
  17. bethigh = false
  18. zog += 1
  19. zag += 1
  20. lol = 0
  21. zim = 0
  22. else
  23. lol += 1
  24. zim +=1
  25. zag = 0
  26. end
  27. if (lol==3) then
  28. nextbet = previousbet*2
  29. lol = 0
  30. bethigh = false
  31. chance = 49.95
  32. end
  33. if lastBet.Roll < 49 then
  34. six+=1
  35. else
  36. six = 0
  37. end
  38. if lastBet.Roll > 51 then
  39. sit+=1
  40. else
  41. sit = 0
  42. end
  43. if balance > bal and win then
  44. nextbet = basebet
  45. bal = balance
  46. end
  47. if (sit==4) then
  48. bethigh = true
  49. nextbet = previousbet*5
  50. sit = 0
  51. end
  52. if (six==4) then
  53. bethigh = false
  54. nextbet = previousbet*5
  55. six = 0
  56. end
  57. if balance > good then
  58. stop()
  59. end
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement