Advertisement
coinwalk

crazybot rhaine style

Apr 9th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. chance = 83
  2. lol = 0
  3. bethigh = false
  4. good = 10
  5. basebet = balance/8000
  6. nextbet = basebet
  7. more = balance*1.1
  8. los = 0
  9. function dobet()
  10.  
  11. if (win) then
  12. lol += 1
  13. chance = 83
  14. else
  15. lol = 0
  16. los +=1
  17. end
  18. if (los == 1) then
  19. chance = 89
  20. nextbet = previousbet
  21. los = 0
  22. end
  23. if (lol ==5) then
  24. chance = 83
  25. nextbet = previousbet*6.8
  26. los = 0
  27. lol = 0
  28. end
  29. if balance > more and win then
  30. more = balance*1.1
  31. nextbet = balance/8000
  32. end
  33. if balance > good then
  34. stop()
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement