├── .gitattributes ├── .gitconfig ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.rst ├── LEGAL.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── getting-started.rst ├── index.rst ├── installation.rst ├── license.rst ├── modules │ ├── index.rst │ ├── modules.rst │ ├── spockbot.mcdata.biomes.rst │ ├── spockbot.mcdata.blocks.rst │ ├── spockbot.mcdata.constants.rst │ ├── spockbot.mcdata.items.rst │ ├── spockbot.mcdata.materials.rst │ ├── spockbot.mcdata.recipes.rst │ ├── spockbot.mcdata.rst │ ├── spockbot.mcdata.utils.rst │ ├── spockbot.mcdata.windows.rst │ ├── spockbot.mcp.bbuff.rst │ ├── spockbot.mcp.datautils.rst │ ├── spockbot.mcp.mcdata.rst │ ├── spockbot.mcp.mcpacket.rst │ ├── spockbot.mcp.mcpacket_extensions.rst │ ├── spockbot.mcp.nbt.rst │ ├── spockbot.mcp.rst │ ├── spockbot.mcp.yggdrasil.rst │ ├── spockbot.plugins.base.rst │ ├── spockbot.plugins.core.auth.rst │ ├── spockbot.plugins.core.event.rst │ ├── spockbot.plugins.core.net.rst │ ├── spockbot.plugins.core.rst │ ├── spockbot.plugins.core.settings.rst │ ├── spockbot.plugins.core.taskmanager.rst │ ├── spockbot.plugins.core.ticker.rst │ ├── spockbot.plugins.core.timer.rst │ ├── spockbot.plugins.helpers.channels.rst │ ├── spockbot.plugins.helpers.chat.rst │ ├── spockbot.plugins.helpers.clientinfo.rst │ ├── spockbot.plugins.helpers.craft.rst │ ├── spockbot.plugins.helpers.entities.rst │ ├── spockbot.plugins.helpers.interact.rst │ ├── spockbot.plugins.helpers.inventory.rst │ ├── spockbot.plugins.helpers.keepalive.rst │ ├── spockbot.plugins.helpers.movement.rst │ ├── spockbot.plugins.helpers.pathfinding.rst │ ├── spockbot.plugins.helpers.physics.rst │ ├── spockbot.plugins.helpers.respawn.rst │ ├── spockbot.plugins.helpers.rst │ ├── spockbot.plugins.helpers.start.rst │ ├── spockbot.plugins.helpers.world.rst │ ├── spockbot.plugins.loader.rst │ ├── spockbot.plugins.rst │ ├── spockbot.plugins.tools.collision.rst │ ├── spockbot.plugins.tools.event.rst │ ├── spockbot.plugins.tools.inventory_async.rst │ ├── spockbot.plugins.tools.rst │ ├── spockbot.plugins.tools.smpmap.rst │ ├── spockbot.plugins.tools.task.rst │ ├── spockbot.rst │ └── spockbot.vector.rst └── plugins │ ├── core │ ├── auth.rst │ ├── event.rst │ ├── index.rst │ ├── net.rst │ ├── settings.rst │ ├── taskmanager.rst │ ├── ticker.rst │ └── timer.rst │ ├── helpers │ ├── channels.rst │ ├── chat.rst │ ├── clientinfo.rst │ ├── craft.rst │ ├── entities.rst │ ├── index.rst │ ├── interact.rst │ ├── inventory.rst │ ├── keepalive.rst │ ├── movement.rst │ ├── pathfinding.rst │ ├── physics.rst │ ├── respawn.rst │ ├── start.rst │ └── world.rst │ └── index.rst ├── examples └── basic │ ├── README.md │ ├── __init__.py │ ├── example.py │ └── example_plugin.py ├── setup.cfg ├── setup.py ├── spockbot ├── __init__.py ├── mcdata │ ├── __init__.py │ ├── biomes.py │ ├── blocks.py │ ├── constants.py │ ├── items.py │ ├── materials.py │ ├── recipes.py │ ├── utils.py │ └── windows.py ├── mcp │ ├── __init__.py │ ├── bbuff.py │ ├── datautils.py │ ├── extensions.py │ ├── mcpacket.py │ ├── nbt.py │ ├── proto.py │ └── yggdrasil.py ├── plugins │ ├── __init__.py │ ├── base.py │ ├── core │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── event.py │ │ ├── net.py │ │ ├── select.py │ │ ├── settings.py │ │ ├── taskmanager.py │ │ ├── ticker.py │ │ └── timers.py │ ├── helpers │ │ ├── __init__.py │ │ ├── auxiliary.py │ │ ├── channels.py │ │ ├── chat.py │ │ ├── clientinfo.py │ │ ├── craft.py │ │ ├── entities.py │ │ ├── interact.py │ │ ├── inventory.py │ │ ├── movement.py │ │ ├── pathfinding.py │ │ ├── physics.py │ │ ├── start.py │ │ └── world.py │ ├── loader.py │ └── tools │ │ ├── __init__.py │ │ ├── collision.py │ │ ├── event.py │ │ ├── inventory_async.py │ │ ├── smpmap.py │ │ └── task.py └── vector.py ├── tests ├── __init__.py ├── mcp │ ├── __init__.py │ ├── test_datautils.py │ └── test_yggdrasil.py ├── plugins │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── test_auth.py │ │ └── test_taskmanager.py │ ├── helpers │ │ ├── __init__.py │ │ ├── test_chat.py │ │ └── test_interact.py │ └── test_base.py └── test_vector.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | *.py filter=spabs 2 | -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/getting-started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/index.rst -------------------------------------------------------------------------------- /docs/modules/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/modules.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.biomes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.biomes.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.blocks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.blocks.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.constants.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.items.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.items.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.materials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.materials.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.recipes.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.utils.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcdata.windows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcdata.windows.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.bbuff.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.bbuff.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.datautils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.datautils.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.mcdata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.mcdata.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.mcpacket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.mcpacket.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.mcpacket_extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.mcpacket_extensions.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.nbt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.nbt.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.mcp.yggdrasil.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.mcp.yggdrasil.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.base.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.auth.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.event.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.net.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.settings.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.taskmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.taskmanager.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.ticker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.ticker.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.core.timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.core.timer.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.channels.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.chat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.chat.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.clientinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.clientinfo.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.craft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.craft.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.entities.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.interact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.interact.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.inventory.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.keepalive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.keepalive.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.movement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.movement.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.pathfinding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.pathfinding.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.physics.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.respawn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.respawn.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.start.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.helpers.world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.helpers.world.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.loader.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.collision.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.collision.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.event.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.inventory_async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.inventory_async.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.smpmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.smpmap.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.plugins.tools.task.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.plugins.tools.task.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.rst -------------------------------------------------------------------------------- /docs/modules/spockbot.vector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/modules/spockbot.vector.rst -------------------------------------------------------------------------------- /docs/plugins/core/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/auth.rst -------------------------------------------------------------------------------- /docs/plugins/core/event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/event.rst -------------------------------------------------------------------------------- /docs/plugins/core/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/index.rst -------------------------------------------------------------------------------- /docs/plugins/core/net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/net.rst -------------------------------------------------------------------------------- /docs/plugins/core/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/settings.rst -------------------------------------------------------------------------------- /docs/plugins/core/taskmanager.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/taskmanager.rst -------------------------------------------------------------------------------- /docs/plugins/core/ticker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/ticker.rst -------------------------------------------------------------------------------- /docs/plugins/core/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/core/timer.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/channels.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/chat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/chat.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/clientinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/clientinfo.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/craft.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/craft.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/entities.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/index.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/interact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/interact.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/inventory.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/keepalive.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/keepalive.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/movement.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/movement.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/pathfinding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/pathfinding.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/physics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/physics.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/respawn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/respawn.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/start.rst -------------------------------------------------------------------------------- /docs/plugins/helpers/world.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/helpers/world.rst -------------------------------------------------------------------------------- /docs/plugins/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/docs/plugins/index.rst -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/examples/basic/example.py -------------------------------------------------------------------------------- /examples/basic/example_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/examples/basic/example_plugin.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/setup.py -------------------------------------------------------------------------------- /spockbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/__init__.py -------------------------------------------------------------------------------- /spockbot/mcdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/__init__.py -------------------------------------------------------------------------------- /spockbot/mcdata/biomes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/biomes.py -------------------------------------------------------------------------------- /spockbot/mcdata/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/blocks.py -------------------------------------------------------------------------------- /spockbot/mcdata/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/constants.py -------------------------------------------------------------------------------- /spockbot/mcdata/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/items.py -------------------------------------------------------------------------------- /spockbot/mcdata/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/materials.py -------------------------------------------------------------------------------- /spockbot/mcdata/recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/recipes.py -------------------------------------------------------------------------------- /spockbot/mcdata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/utils.py -------------------------------------------------------------------------------- /spockbot/mcdata/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcdata/windows.py -------------------------------------------------------------------------------- /spockbot/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spockbot/mcp/bbuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/bbuff.py -------------------------------------------------------------------------------- /spockbot/mcp/datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/datautils.py -------------------------------------------------------------------------------- /spockbot/mcp/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/extensions.py -------------------------------------------------------------------------------- /spockbot/mcp/mcpacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/mcpacket.py -------------------------------------------------------------------------------- /spockbot/mcp/nbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/nbt.py -------------------------------------------------------------------------------- /spockbot/mcp/proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/proto.py -------------------------------------------------------------------------------- /spockbot/mcp/yggdrasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/mcp/yggdrasil.py -------------------------------------------------------------------------------- /spockbot/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/__init__.py -------------------------------------------------------------------------------- /spockbot/plugins/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/base.py -------------------------------------------------------------------------------- /spockbot/plugins/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spockbot/plugins/core/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/auth.py -------------------------------------------------------------------------------- /spockbot/plugins/core/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/event.py -------------------------------------------------------------------------------- /spockbot/plugins/core/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/net.py -------------------------------------------------------------------------------- /spockbot/plugins/core/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/select.py -------------------------------------------------------------------------------- /spockbot/plugins/core/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/settings.py -------------------------------------------------------------------------------- /spockbot/plugins/core/taskmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/taskmanager.py -------------------------------------------------------------------------------- /spockbot/plugins/core/ticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/ticker.py -------------------------------------------------------------------------------- /spockbot/plugins/core/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/core/timers.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spockbot/plugins/helpers/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/auxiliary.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/channels.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/chat.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/clientinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/clientinfo.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/craft.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/entities.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/interact.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/inventory.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/movement.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/pathfinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/pathfinding.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/physics.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/start.py -------------------------------------------------------------------------------- /spockbot/plugins/helpers/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/helpers/world.py -------------------------------------------------------------------------------- /spockbot/plugins/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/loader.py -------------------------------------------------------------------------------- /spockbot/plugins/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spockbot/plugins/tools/collision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/tools/collision.py -------------------------------------------------------------------------------- /spockbot/plugins/tools/event.py: -------------------------------------------------------------------------------- 1 | """Used for unregistering event handlers""" 2 | EVENT_UNREGISTER = 0x1 3 | -------------------------------------------------------------------------------- /spockbot/plugins/tools/inventory_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/tools/inventory_async.py -------------------------------------------------------------------------------- /spockbot/plugins/tools/smpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/tools/smpmap.py -------------------------------------------------------------------------------- /spockbot/plugins/tools/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/plugins/tools/task.py -------------------------------------------------------------------------------- /spockbot/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/spockbot/vector.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mcp/test_datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/mcp/test_datautils.py -------------------------------------------------------------------------------- /tests/mcp/test_yggdrasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/mcp/test_yggdrasil.py -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/core/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/plugins/core/test_auth.py -------------------------------------------------------------------------------- /tests/plugins/core/test_taskmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/plugins/core/test_taskmanager.py -------------------------------------------------------------------------------- /tests/plugins/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/helpers/test_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/plugins/helpers/test_chat.py -------------------------------------------------------------------------------- /tests/plugins/helpers/test_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/plugins/helpers/test_interact.py -------------------------------------------------------------------------------- /tests/plugins/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/plugins/test_base.py -------------------------------------------------------------------------------- /tests/test_vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tests/test_vector.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpockBotMC/SpockBot/HEAD/tox.ini --------------------------------------------------------------------------------