Advertisement
coinwalk

snowybot lua

May 16th, 2024
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. elderly      = balance
  2. prefit       = (elderly/240)
  3. tens         = (prefit*10)
  4. sevens       = (prefit*6.9)
  5. eights       = (prefit*7.9)
  6. winnerdinner = (elderly*24)
  7. snowy        = 0
  8. chance       = 49.5
  9. bethigh      = false
  10. nextbet      = prefit
  11. snowie       = elderly
  12. resetstats()
  13.  
  14. function dobet()
  15. dog = (balance-elderly)
  16. print("profit")
  17. print(dog)
  18. if ((balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights)) and (not (balance==snowy))) then
  19.     nextbet = previousbet*2
  20.     snowy   = balance
  21. end
  22. if (((balance/20)<=nextbet) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  23.     nextbet = prefit
  24.     snowy   = 0
  25.     snowie  = balance
  26. end
  27. if (((balance/20)<=nextbet) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  28.     nextbet = prefit
  29.     snowy   = 0
  30.     snowie  = balance
  31. end
  32. if (((balance/20)<=nextbet) and (balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights))) then
  33.     nextbet = prefit*2
  34.     snowy   = balance
  35.     snowie  = balance
  36. end
  37. if (((balance/40)<=nextbet) and (balance>snowie) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  38.     nextbet = prefit
  39.     snowy   = 0
  40.     snowie  = balance
  41. end
  42. if (((balance/40)<=nextbet) and (balance>snowie) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  43.     nextbet = prefit
  44.     snowy   = 0
  45.     snowie  = balance
  46. end
  47. if (((balance/40)<=nextbet) and (balance>snowie) and (balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights))) then
  48.     nextbet = prefit*2
  49.     snowy   = balance
  50.     snowie  = balance
  51. end
  52. if ((nextbet>=(elderly/10)) and (balance>snowie) and (balance<(((math.floor(balance/tens))*tens)+sevens))) then
  53.     nextbet = prefit
  54.     snowy   = 0
  55.     snowie  = balance
  56. end
  57. if ((nextbet>=(elderly/10)) and (balance>snowie) and (balance>(((math.floor(balance/tens))*tens)+eights))) then
  58.     nextbet = prefit
  59.     snowy   = 0
  60.     snowie  = balance
  61. end
  62. if ((nextbet>=(elderly/10)) and (balance>snowie) and (balance>(((math.floor(balance/tens))*tens)+sevens)) and (balance<(((math.floor(balance/tens))*tens)+eights))) then
  63.     nextbet = prefit*2
  64.     snowy   = balance
  65.     snowie  = balance
  66. end
  67. if (balance>=winnerdinner) then
  68.     print("winner winner chicken dinner")
  69.     stop()
  70. end
  71. end
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement