coinwalk

snowybot lua

Mar 15th, 2023
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 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))) then
  21. nextbet = hertz*2
  22. hertz = hertz*2
  23. flank = 4.9
  24. under = 4.9
  25. crazy = (balance)
  26. end
  27. if (balance<(crazy-(hertz*under))) then
  28. nextbet = hertz*2
  29. hertz = hertz*2
  30. ingot = 0
  31. flank = 4.9
  32. under = 4.9
  33. crazy = (balance)
  34. end
  35. if ((balance>=(gunkybutt+(claim*ingot))) and (balance<(gunkybutt+(((math.floor((balance-gunkybutt)/claim))*claim)+krux))))then
  36. crazy = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  37. gunkybutt = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  38. flank = 6.9
  39. ingot = 1
  40. under = 2.9
  41. nextbet = troll
  42. hertz = troll
  43. end
  44. if ((balance>=(gunkybutt+(claim*ingot))) and (balance>(gunkybutt+(((math.floor((balance-gunkybutt)/claim))*claim)+krux)))) then
  45. crazy = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  46. gunkybutt = gunkybutt+((math.floor((balance-gunkybutt)/claim))*claim)
  47. flank = 4.9
  48. ingot = 1
  49. under = 4.9
  50. nextbet = troll*2
  51. hertz = troll*2
  52. end
  53. if (balance>=earnpoint) then
  54. stop()
  55. end
  56. end
Add Comment
Please, Sign In to add comment