Advertisement
coinwalk

yoyoyo game gg

Aug 26th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. basebet = balance/64
  2. nextbet = basebet
  3. bethigh = false
  4. chance = 49.95
  5. james = balance
  6. more = balance
  7. fim = 0
  8. dim = 0
  9. kim = 0
  10. rim = 0
  11. target = balance*6
  12. function dobet()
  13. if !win then
  14. fim+=1
  15. rim+=1
  16. kim+=1
  17. dim = 0
  18. end
  19. if win then
  20. dim+=1
  21. fim+=1
  22. rim+=1
  23. kim+=1
  24. end
  25. if (rim>5)and balance<more then
  26. nextbet = previousbet*2
  27. dim+=1
  28. end
  29. if (dim>2) then
  30. rim = 0
  31. nextbet = previousbet
  32. dim = 0
  33. end
  34. if nextbet<basebet then
  35. nextbet = basebet
  36. end
  37. if balance>more then
  38. nextbet = basebet
  39. more = balance
  40. james = balance
  41. end
  42. if balance>target then
  43. stop()
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement