Advertisement
coinwalk

what does mine say ... dude

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