Advertisement
coinwalk

new invention

Mar 14th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. lol = 2^8
  2. basebet = balance/lol
  3. base = balance/lol
  4. base = basebet
  5. chance = 49.95
  6. nextbet = basebet
  7. bethigh = false
  8. oldbalance = balance
  9. oldbal = balance
  10. target = 50000
  11. bim = false
  12. zim = true
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. if (balance>=(oldbalance+(basebet*7))) then
  18. nextbet = previousbet*2
  19. basebet = nextbet
  20. bim = true
  21. zim = false
  22. base = balance/lol
  23. oldbalance = balance
  24. end
  25. if (balance<=(oldbalance-(basebet*3))) and bim==true and zim==false then
  26. nextbet = previousbet/2
  27. basebet = nextbet
  28. oldbalance = balance
  29. zim = true
  30. bim = false
  31. end
  32. if nextbet>=balance/50 and win then
  33. nextbet = balance/lol
  34. basebet = balance/lol
  35. base = balance/lol
  36. oldbal = balance
  37. oldbalance = balance
  38. zim = true
  39. bim = true
  40. end
  41. if (balance<=(oldbalance-(basebet*3))) and zim==true then
  42. nextbet = previousbet*2
  43. basebet = nextbet
  44. oldbalance = balance
  45. bim = false
  46. zim = false
  47. end
  48. if nextbet<base then
  49. nextbet = base
  50. basebet = base
  51. zim = true
  52. bim = false
  53. end
  54.  
  55. if (balance>=target) then
  56. stop()
  57. end
  58. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement