Advertisement
coinwalk

omfg lua

Feb 11th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. basebet = 0.01
  2. oldbalance = balance
  3. old = balance
  4. i = balance
  5. bethigh = false
  6. nextbet = basebet
  7. target = 50000
  8. g = 0.01
  9. f = true
  10. a = true
  11. b = true
  12. c = true
  13. d = true
  14. e = true
  15. joe = (basebet*10)
  16. k = 7
  17. resetstats()
  18.  
  19. function dobet()
  20. if ((balance<=(oldbalance-(basebet*3))) and (a==true)) then
  21. nextbet = previousbet*2
  22. g = nextbet
  23. joe = 0
  24. a = false
  25. end
  26. if ((balance<=(oldbalance-(basebet*9))) and (b==true)) then
  27. nextbet = previousbet/2
  28. g = nextbet
  29. b = false
  30. k = 6
  31. joe = 0
  32. old = balance
  33. end
  34. if ((balance<=(oldbalance-(basebet*13))) and (c==true)) then
  35. nextbet = previousbet*2
  36. g = nextbet
  37. k = 6
  38. joe = 0
  39. old = balance
  40. c = false
  41. end
  42. if ((balance<=(oldbalance-(basebet*19))) and (d==true)) then
  43. nextbet = previousbet*2
  44. g = nextbet
  45. k = 6
  46. joe = 0
  47. d = false
  48. old = balance
  49. end
  50. if ((balance<=(oldbalance-(basebet*23))) and (e==true)) then
  51. nextbet = previousbet*2
  52. g = nextbet
  53. k = 6
  54. joe = 0
  55. old = balance
  56. e = false
  57. end
  58. if ((balance<=(oldbalance-(basebet*29))) and (f==true)) then
  59. nextbet = previousbet*2
  60. g = nextbet
  61. k = 6
  62. joe = 0
  63. old = balance
  64. f = false
  65. end
  66. if (balance==(old+(g*k))) then
  67. nextbet = previousbet*2
  68. g = nextbet
  69. end
  70. if (balance>=(i+(joe))) then
  71. nextbet = basebet
  72. g = nextbet
  73. f = true
  74. k = 6
  75. a = true
  76. b = true
  77. c = true
  78. d = true
  79. e = true
  80. joe = (basebet*10)
  81. old = balance
  82. oldbalance = balance
  83. i = balance
  84. end
  85. if balance>=target then
  86. stop()
  87. end
  88. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement