Advertisement
coinwalk

thanx rayooo

Nov 15th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. chance = 66
  2. prebet = balance/1000
  3. nextbet = balance/1000
  4. bethigh = false
  5. zog = 0
  6. lose = 0
  7. function dobet()
  8.  
  9. if win then
  10. chance = 66
  11. zog += 3
  12. lose = 0
  13. else
  14. lose += 1
  15. zog -= 1
  16. end
  17. if (zog > 6) then
  18. nextbet = balance/1000
  19. zog = 0
  20. end
  21. if (lose==2) then
  22. nextbet = previousbet*3
  23. end
  24. if (lose==4) then
  25. nextbet = previousbet*3
  26. end
  27. if (lose==6) then
  28. nextbet = previousbet*3
  29. end
  30. if (lose > 8) then
  31. nextbet = previousbet*1.5
  32. bethigh = true
  33. end
  34. if balance > 2 then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement