shamhi / YesCoinBot

Bot that mines coins in YesCoin
173 stars 65 forks source link

APPLY_DAILY_ENERGY and Yes APPLY_DAILY_TURBO not wotking #36

Open ngocbae98 opened 4 months ago

ngocbae98 commented 4 months ago

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

s1rne commented 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)