Advertisement
Shiemmi

Random YOLO

Feb 21st, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. bets a base bet at 93% and randomly YOLOs your balance on 93%. Chance of yolo bet can be adjusted.
  2.  
  3.  
  4. basebet = 0.00001 -- this is the starting amount that you can set
  5. chance=93 --this is your chance to win
  6. nextbet=basebet
  7. randomchance=100
  8. --the random bet generates a integer between zero (0)
  9. --and ten thousand (100 000). this value
  10. --determines how often the random bet happens
  11. --with a value of 100 being 1%, 20 =0.2% etc
  12. function dobet()
  13. x = math.random(0,10000)
  14. if x< randomchance then
  15. nextbet = balance
  16. else
  17. nextbet=basebet
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement