Advertisement
coinwalk

yehar!!!!!!!!!!!

Apr 29th, 2022
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. bob = 0.01
  2. cript = bob
  3. god = (bob*2)
  4. have = balance
  5. ian = balance
  6. joe = false
  7. chance = 49.5
  8. nextbet = bob
  9. target = 5000
  10. bethigh = false
  11. resetstats()
  12.  
  13. function dobet()
  14. if (balance<(have-god)) then
  15. nextbet = previousbet*2
  16. cript = (previousbet*2)
  17. god = (previousbet*7)
  18. have = balance
  19. joe = true
  20. end
  21. if (balance>=(have+(cript*7))) then
  22. nextbet = previousbet*2
  23. cript = (previousbet*2)
  24. god = (previousbet*5)
  25. joe = false
  26. have = balance
  27. end
  28. if (((balance-ian)>=(bob*10)) and not (balance==((math.floor(((balance)-(ian))/(bob*10)))*(bob*7)))) then
  29. nextbet = bob
  30. cript = bob
  31. god = (bob*2)
  32. have = (ian+((math.floor(((balance)-(ian))/(bob*10)))*(bob*10)))
  33. ian = (ian+((math.floor(((balance)-(ian))/(bob*10)))*(bob*10)))
  34. joe = false
  35. end
  36. if ((joe==true) and (balance>=ian)) then
  37. nextbet = bob
  38. cript = bob
  39. god = (bob*2)
  40. have = ian
  41. joe = false
  42. end
  43. if (balance>=target) then
  44. stop()
  45. end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement