Advertisement
coinwalk

lua snowybot

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