Advertisement
coinwalk

snowybot

Oct 6th, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. --so crazy you'll win
  2. --made by James William Snow
  3. --MEGA SNOWY BOT WITH CRAZY BOT TECHNOLOGY
  4. divie = 24000
  5. basebet = balance/divie
  6. base = basebet
  7. bethigh = false
  8. chance = 49.5
  9. have = balance
  10. old = balance
  11. james = balance
  12. darn = 2.5
  13. upper = 6.5
  14. zoink = 0
  15. target = 7000
  16. downer = false
  17. fold = false
  18. nextbet = basebet
  19. resetstats()
  20.  
  21. function dobet()
  22. if (balance<(have-(base*2.5))) then
  23. nextbet = lastBet.Amount*2
  24. base = nextbet
  25. downer = true
  26. darn = 4.5
  27. have = balance
  28. end
  29. if (balance>(have+(base*upper))) then
  30. nextbet = lastBet.Amount*2
  31. base = nextbet
  32. darn = 4.5
  33. upper = 4.5
  34. fold = false
  35. have = balance
  36. end
  37. if ((balance<(james-(basebet*20))) and (fold==false)) then
  38. nextbet = basebet
  39. base = basebet
  40. have = balance
  41. james = balance
  42. fold = true
  43. end
  44. if (balance>james) then
  45. james = balance
  46. end
  47. if (((balance>=old) and (downer==true) and (balance<(old+(basebet*6.5))) and (fold==false)) or (balance>(old+(basebet*10))) and (balance<(old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))+(basebet*6.5)))) then
  48. nextbet = basebet
  49. base = basebet
  50. upper = 6.5
  51. darn = 2.5
  52. downer = false
  53. james = balance
  54. fold = false
  55. have = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  56. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  57. end
  58. if (((balance>=old) and (downer==true) and (balance==(old+(basebet*7))) and (fold==false)) or (balance>(old+(basebet*10))) and (balance==(old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))+(basebet*7)))) then
  59. nextbet = basebet*2
  60. base = basebet*2
  61. upper = 6.5
  62. darn = 2.5
  63. downer = false
  64. fold = false
  65. james = balance
  66. have = balance
  67. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  68. end
  69. if (balance>=target) then
  70. stop()
  71. end
  72. end
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement