mpcabete / bombcrypto-bot

This is a python bot that automatically logs in, clicks the new button, and sends heroes to work in the bombcrypto game. It is fully open source and free.
819 stars 536 forks source link

Bcoins chest bot #662

Closed zedsousa closed 2 years ago

ghost commented 2 years ago

implementei seu código no meu porem estou recebendo um erro que não sei como corrigir. Exception has occurred: KeyError 'check_chests' File "C:\bombmod\index.py", line 870, in main if now - last["check_chests"] > addRandomness(t['check_chests'] * 60): File "C:\bombmod\index.py", line 978, in <module> main()

@zedsousa pode me ajudar?

ghost commented 2 years ago

index.txt

zedsousa commented 2 years ago

Você tem que adicionar essa linha no config.yaml check_chests: 30

ghost commented 2 years ago

eu já adicionei isso! copiei todas as mudanças e instalei as extensões também. ele está declarado igual ao seu no main loop

def main(): """Main execution setup and loop"""

==Setup==

global hero_clicks
global login_attempts
global last_log_is_progress
hero_clicks = 0
login_attempts = 0
last_log_is_progress = False

global images
images = load_images()

if ch['enable']:
    global home_heroes
    home_heroes = loadHeroesToSendHome()
else:
    print('>>---> Home feature not enabled')
print('\n')

print(cat)
time.sleep(7)
t = c['time_intervals']

last = {
"login" : 0,
"check_bcoins": 0,
"check_chests": 0,
"heroes" : 0,
"new_map" : 0,
"check_for_captcha" : 0,
"refresh_heroes" : 0
}
# =========