Containerized bot for game www.monstersgame.com.pt/
First, setup your secrets at credentials.py
bot = Bot()
scheduler = Scheduler()
scheduler.push(lambda: bot.login())
scheduler.execute()
scheduler.push(lambda: bot.hunt_humans())
scheduler.execute()
scheduler.push(lambda: bot.hunt_enemies())
scheduler.execute()
Important: Attack criteria should be modified into hunt_enemies() function
scheduler.push(lambda: bot.hunt_by_registry(3))
scheduler.execute()
scheduler.push(lambda: bot.work(5))
scheduler.execute()
scheduler.push(lambda: bot.hunt_by_list(known_enemies))
scheduler.execute()
known_enemies should be a list of strings into enemies.py