Files
google-labs-jules[bot] 10da311d83 refine: Enhance Docker setup and docs for fork usability
- Corrected 'SpeechRecognition' casing in addons/addons.txt.
- Updated ultroid_setup.sh welcome message to specify the fork.
- Modified README.md, README_DOCKER.md, and DOCKER_DEPLOYMENT.md:
  - Pointed clone/curl URLs and repository links to the overspend1/Ultroid-fork.
  - Reinforced ultroid_setup.sh as the primary method for Docker deployment.
  - Ensured documentation clarity regarding building the Docker image from the fork's source.
2025-06-19 22:06:48 +00:00
..
2025-06-18 18:06:36 +02:00
2025-06-18 18:06:36 +02:00

UltroidAddons

Plugins repository for @TheUltroid.

Contributing

If you want to contribute to this repository (adding your plugins/porting from other bots), use the format given below and create a pull request.
⚠️ First check whether the stuff you push works. Also, if the pull request doesn't follow the below format, it will be closed without prior notice.

# Credits @username (creator of plugin and who ported)   
   
# Ported from (if ported else skip)   
   
# Ported for Ultroid < https://github.com/TeamUltroid/Ultroid >   

Kindly do not steal others works without credits.

Example Plugin

Required Import are Automatically Done.

This Example Works Everywhere. (e.g. Groups, Personal Chats ...)

@ultroid_cmd(pattern="hoi")
async def hello_world_example(event):
    # As telethon is an asyncio based lib, you will have to use `async`/`await` Syntax.
    await event.reply("Hello **World**.")

This Example Works Only In Groups.

@ultroid_cmd(pattern="hoi", groups_only=True,)
async def hello_world_example(event):
    await event.reply("Hello **World**.")

If Your plugin need any additional requirements, it can be added to addons.txt


For More Information See The Pypi Page.

Made with 💕 by @TeamUltroid.