Open ngocbae98 opened 4 months ago
I can offer a crutch for APPLY_DAILY_ENERGY, but it works:
after line 283 in tapper (/bot/core/tapper.py) you need to insert the line available_energy -= calc_taps
.
To make it work:
...
new_balance = profile_data['currentAmount']
calc_taps = new_balance - balance
available_energy -= calc_taps
balance = new_balance
total = profile_data['totalAmount']
...
And I advise you to set MIN_AVAILABLE_ENERGY = 700 in config.py, and RANDOM_TAPS_COUNT: list[int] = [50, 180]
I hope it helps)
I've set APPLY_DAILY_ENERGY= True APPLY_DAILY_TURBO= True but it's not working.