Advertisement
coinwalk

4 times

Dec 18th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. chance = 49.95
  2. lol = 0
  3. bethigh = true
  4. good = 1
  5. nextbet = 0.00000001
  6. basebet = 0.00000001
  7. zog = 0
  8. zim = 0
  9. function dobet()
  10.  
  11. if (win) then
  12. chance = 20
  13. zog += 1
  14. lol = 0
  15. zim = 0
  16. else
  17. lol += 1
  18. zim +=1
  19. end
  20. if (lol==2) then
  21. nextbet = previousbet*3
  22. bethigh = !bethigh
  23. end
  24. if (lol==3) then
  25. nextbet = previousbet*2
  26. end
  27. if (lol==4) then
  28. nextbet = previousbet*2
  29. end
  30. if zim > 4 then
  31. chance = 95
  32. nextbet = previousbet*40
  33. end
  34. if zim > 5 then
  35. chance = 95
  36. nextbet = previousbet*21
  37. bethigh = !bethigh
  38. end
  39. if (zog == 2) and win then
  40. zog = 0
  41. nextbet = basebet
  42. bethigh = !bethigh
  43. end
  44. if balance > good then
  45. stop()
  46. end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement