├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── FarmBot ├── FarmBot.py └── core │ ├── Auth.py │ ├── Basic.py │ ├── Cards.py │ ├── HttpRequest.py │ ├── PlaygroundRequests.py │ └── Tasks.py ├── README.MD ├── bot.py ├── bot_settings_types.json ├── logo.png └── utilities ├── Playground.py ├── PromoGames.py ├── hk.py └── utilities.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/.gitignore -------------------------------------------------------------------------------- /FarmBot/FarmBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/FarmBot.py -------------------------------------------------------------------------------- /FarmBot/core/Auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/Auth.py -------------------------------------------------------------------------------- /FarmBot/core/Basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/Basic.py -------------------------------------------------------------------------------- /FarmBot/core/Cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/Cards.py -------------------------------------------------------------------------------- /FarmBot/core/HttpRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/HttpRequest.py -------------------------------------------------------------------------------- /FarmBot/core/PlaygroundRequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/PlaygroundRequests.py -------------------------------------------------------------------------------- /FarmBot/core/Tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/FarmBot/core/Tasks.py -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/README.MD -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/bot.py -------------------------------------------------------------------------------- /bot_settings_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/bot_settings_types.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/logo.png -------------------------------------------------------------------------------- /utilities/Playground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/utilities/Playground.py -------------------------------------------------------------------------------- /utilities/PromoGames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/utilities/PromoGames.py -------------------------------------------------------------------------------- /utilities/hk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/utilities/hk.py -------------------------------------------------------------------------------- /utilities/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterking32/MCF_HamsterKombat/HEAD/utilities/utilities.py --------------------------------------------------------------------------------