Advertisement
coinwalk

lol

Aug 23rd, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. raction = 500000
  2. basebet = 0.00000001
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 5
  6. james = balance
  7. fim = 0
  8. zim=0
  9. zog=0
  10. zag=0
  11. bim=0
  12. target= 0.0065
  13. function dobet()
  14. if (!win) then
  15. fim+=1
  16. zog+=1
  17. zag+=1
  18. zim+=1
  19. end
  20. if (fim==9) then
  21. nextbet = previousbet*2
  22. end
  23. if (zog==20) then
  24. nextbet = previousbet*2
  25. end
  26. if (zag==29) then
  27. nextbet = previousbet*2
  28. end
  29. if (bim==36) then
  30. nextbet = previousbet*2
  31. end
  32. if (zim==59) then
  33. nextbet = previousbet*2
  34. end
  35. if (balance>james) and (win) then
  36. nextbet = basebet
  37. james = balance
  38. fim = 0
  39. zag=0
  40. bim=0
  41. zog=0
  42. zim=0
  43.  
  44. end
  45. if balance>target then
  46. stop()
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement