# Examples

- [Start Plugins](https://docs.minecraftbot.com/examples/start-plugins.md): Start plugins have a checkbox in the Plugins tab and are usually started on all of the connected accounts.
- [Events (basic)](https://docs.minecraftbot.com/examples/start-plugins/events-basic.md): A basic code example that shows you how to make a plugin listen for certain events.
- [Movement (basic)](https://docs.minecraftbot.com/examples/start-plugins/movement-basic.md): A basic code example that shows you how to make the bot move between two locations.
- [Killaura (intermediate)](https://docs.minecraftbot.com/examples/start-plugins/killaura-advanced.md): This example will show you code for a basic plugin that will follow and attack the closest target-able player. The plugin incorporates multiple tasks and therefore is marked as intermediate.
- [Wheat Farmer (intermediate)](https://docs.minecraftbot.com/examples/start-plugins/wheat-farmer-intermediate.md): This will show you code for a wheat farmer, meaning that it finds the closest fully grown wheat blocks, moves to them, breaks them, and finally replants them.
- [Request Plugins](https://docs.minecraftbot.com/examples/request-plugins.md): Request plugins are the ones that can only be invoked on one or more account through the Accounts tab. This means that they do not have a checkmark in the Plugins tab and usually don't run on all bots
- [Chat (advanced)](https://docs.minecraftbot.com/examples/request-plugins/chat-advanced.md)
- [Macro Component Additions](https://docs.minecraftbot.com/examples/macro-component-additions.md): Plugins can also add custom components to the macro builder. Regular plugin api functions can be used within the Execute method. This page describes how to make a plugin that registers new components.
- [Botting Command Additions](https://docs.minecraftbot.com/examples/botting-command-additions.md): Plugins can also add custom commands to the botting tab. Regular plugin api functions can be used within the Activate method. This page describes how to make a plugin that registers new commands.
- [BotViewer Additions](https://docs.minecraftbot.com/examples/botviewer-additions.md): Plugins can extend bot viewer's functionallity. This can be achived in two ways: Base Extensions, which run as soon as the user connects to the server, and Chat Command Based Extensions.
- [Base Extension](https://docs.minecraftbot.com/examples/botviewer-additions/base-extension.md): Base extensions for the Bot Viewer get called as soon as the user connects to the bot's server.
- [Chat Command Based Extension](https://docs.minecraftbot.com/examples/botviewer-additions/chat-command-based-extension.md): These chat commands can be discovered through the !help command. Chat Command Based Extensions get invoked once the user sends a chat message with the desired keyword (Name variable).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.minecraftbot.com/examples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
