Advertisement
coinwalk

snowybot lua

Mar 16th, 2023
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. troll = balance/100000
  2. chance = 49.5
  3. bethigh = false
  4. hertz = troll
  5. earnpoint = 5000
  6. nextbet = troll
  7. flank = 6.9
  8. under = 2.9
  9. claim = (troll*10)
  10. krux = (troll*6.9)
  11. ingot = 1
  12. nolta = false
  13. gunk = balance
  14. gunkybutt = balance
  15. crazy = balance
  16. resetstats()
  17.  
  18.  
  19.  
  20. function dobet()
  21. if (balance>(crazy+(hertz*flank))) then
  22. nextbet = hertz*2
  23. hertz = hertz*2
  24. flank = 4.9
  25. under = 4.9
  26. crazy = (balance)
  27. end
  28. if (balance<(crazy-(hertz*under))) then
  29. nextbet = hertz*2
  30. hertz = hertz*2
  31. ingot = 0
  32. flank = 4.9
  33. under = 4.9
  34. crazy = (balance)
  35. end
  36. if ((balance>=(gunkybutt+(claim*ingot))) and (balance<(gunkybutt+(((math.floor((balance-gunkybutt)/claim))*claim)+krux)))) then
  37. crazy = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  38. gunkybutt = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  39. flank = 6.9
  40. ingot = 1
  41. under = 2.9
  42. nextbet = troll
  43. hertz = troll
  44. end
  45. if ((balance>=(gunkybutt+(claim*ingot))) and (balance>(gunkybutt+(((math.floor((balance-gunkybutt)/claim))*claim)+krux)))) then
  46. crazy = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  47. gunkybutt = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  48. flank = 4.9
  49. ingot = 1
  50. under = 4.9
  51. nextbet = troll*2
  52. hertz = troll*2
  53. end
  54. if (balance>=earnpoint) then
  55. stop()
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement