Advertisement
coinwalk

prebet bigbet

Feb 6th, 2020
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. chance = 65
  2. bethigh = false
  3. target = 0.002
  4. bigbet = balance/100
  5. nextbet = 0
  6. prebet = 0
  7. zim = 0
  8. zag = 0
  9. function dobet()
  10.  
  11. if (win) then
  12. chance = 65
  13. nextbet = prebet
  14. end
  15. if (chance==45) and !win then
  16. nextbet = previousbet*2
  17. end
  18. if (chance==45) and win then
  19. nextbet = prebet
  20. chance = 65
  21. end
  22. if lastBet.Roll > 55 then
  23. zim += 1
  24. zag = 0
  25. end
  26. if lastBet.Roll < 45 then
  27. zim = 0
  28. zag += 1
  29. end
  30. if lastBet.Roll >45 and lastBet.Roll < 55 then
  31. zim = 0
  32. zag = 0
  33. end
  34. if zag >= 5 then
  35. bethigh = false
  36. nextbet = bigbet
  37. chance = 45
  38. zag = 0
  39. end
  40. if zim >= 5 then
  41. bethigh = true
  42. nextbet = bigbet
  43. chance = 45
  44. zim = 0
  45. end
  46. if balance > target then
  47. stop()
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement