YesCoinBot icon indicating copy to clipboard operation
YesCoinBot copied to clipboard

APPLY_DAILY_ENERGY and Yes APPLY_DAILY_TURBO not wotking

Open tuanteku9x opened this issue 1 year ago • 1 comments

I've set APPLY_DAILY_ENERGY= True APPLY_DAILY_TURBO= True but it's not working.

tuanteku9x avatar Jul 10 '24 03:07 tuanteku9x

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)

s1rne avatar Jul 12 '24 13:07 s1rne