Advertisement
coinwalk

for nugget

Jun 17th, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. b = (balance/32)
  2. i = balance
  3. t = false
  4. c = 3
  5. h = 0
  6. y = balance
  7. chance = 49.5
  8. nextbet = b
  9. bethigh = false
  10. e = false
  11. j = 0
  12. target = 500
  13. resetstats()
  14.  
  15. function dobet()
  16. if win then
  17. h = h+1
  18. j = j-1
  19. else
  20. h = h-1
  21. j = j+1
  22. end
  23. if (h>6) then
  24. nextbet = previousbet*2
  25. h = 0
  26. j = 0
  27. s = true
  28. e = true
  29. end
  30. if ((h>2) and (s==true)) then
  31. nextbet = b
  32. h = 0
  33. j = 0
  34. s = false
  35. e = false
  36. end
  37. if (j>4) then
  38. nextbet = previousbet*2
  39. h = 0
  40. j = 0
  41. s = false
  42. t = true
  43. end
  44. if ((j>2) and (e==true)) then
  45. nextbet = b
  46. h = 1-2
  47. j = 1-2
  48. s = false
  49. e = false
  50. end
  51. if ((balance>(i+(b*10))) or ((balance>=i) and (t==true))) then
  52. h = 0
  53. nextbet = b
  54. j = 0
  55. s = false
  56. t = false
  57. e = false
  58. i = i+((math.floor((balance-i)/(b*10)))*(b*10))
  59. y = i
  60. end
  61. if (balance>=target) then
  62. stop()
  63. end
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement