Advertisement
coinwalk

trial

Mar 25th, 2020
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. chance = 38
  2. lol = 0
  3. bethigh = true
  4. good = balance*2
  5. nextbet = balance/5000
  6. basebet = balance/5000
  7. zog = 0
  8. zim = 0
  9. zag = 0
  10. nob = balance/300
  11. shit = balance*1.001
  12. function dobet()
  13.  
  14. if (win) then
  15. chance = 38
  16. zog += 1
  17. zag += 1
  18. lol = 0
  19. zim = 0
  20. else
  21. lol += 1
  22. zim +=1
  23. zag = 0
  24. end
  25. if (lol==2) then
  26. nextbet = previousbet*2
  27. lol = 0
  28. end
  29. if nextbet > balance then
  30. nextbet = balance/50
  31. end
  32. if (zog == 3) and win then
  33. zog = 0
  34. bethigh = !bethigh
  35. end
  36. if previousbet > nob and win then
  37. nob = balance/300
  38. nextbet = balance/5000
  39. end
  40. if balance > shit and win then
  41. nextbet = balance/5000
  42. shit = balance*1.001
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement