Advertisement
coinwalk

cool lua ye har!!!

Aug 3rd, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. fraction = 200
  2. basebet = balance/fraction
  3. nextbet = basebet
  4. bethigh = false
  5. chance = 24
  6. more = balance
  7. target = 30
  8. vim = 0
  9. zim = 0
  10. james = balance
  11. fim = 0
  12. rim = 0
  13. function dobet()
  14. if win then
  15. zim+=1
  16. fim+=1
  17. vim = 0
  18. rim = 0
  19. else
  20. vim+=1
  21. rim+=1
  22. end
  23. if (zim == 10) then
  24. zim = 0
  25. end
  26. if (fim<=4) and (zim>=1) then
  27. zog+=1
  28. vim = 0
  29. fim = 0
  30. zim = 0
  31. else
  32. zog = 0
  33. end
  34. if (rim==10) then
  35. nextbet = previousbet*2
  36. rim = 0
  37. end
  38. if (vim==15) then
  39. nextbet = previousbet*2
  40. vim = 0
  41. end
  42. if zog>1 then
  43. nextbet = previousbet*2
  44. zog = 0
  45. end
  46.  
  47. if balance>james*1.03 and win then
  48. nextbet = basebet
  49. james = balance
  50. end
  51. if balance>target then
  52. stop()
  53. end
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement