Skip to content

Monstersgame bot using selenium in a docker container with optional s3 data persistence

Notifications You must be signed in to change notification settings

Zatura/monstersgame-automation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

monstersgame-automation

Containerized bot for game www.monstersgame.com.pt/

Login

First, setup your secrets at credentials.py

bot = Bot()
scheduler = Scheduler()
scheduler.push(lambda: bot.login())
scheduler.execute()

Daily hunt

scheduler.push(lambda: bot.hunt_humans())
scheduler.execute()

Hunt random enemies

scheduler.push(lambda: bot.hunt_enemies())
scheduler.execute()

Important: Attack criteria should be modified into hunt_enemies() function

Hunt the last 3 most wealthy recently attacked enemies

scheduler.push(lambda: bot.hunt_by_registry(3))
scheduler.execute()

Work 5 hours at cemitery

scheduler.push(lambda: bot.work(5))
scheduler.execute()

Enemies by list

scheduler.push(lambda: bot.hunt_by_list(known_enemies))
scheduler.execute()

known_enemies should be a list of strings into enemies.py

image

About

Monstersgame bot using selenium in a docker container with optional s3 data persistence

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published