Merge pull request 'Updated welcome message to include the requirements for the bot.' (#80) from new-welcome into main
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 3m13s

Reviewed-on: #80
This commit is contained in:
2025-10-21 19:50:23 +00:00

View File

@@ -12,7 +12,7 @@ const feature = composer.chatType("private");
feature.command("start", logHandle("command-start"), ctx => {
// Responds with information about the bot.
return ctx.reply(
`Welcome\\! I am a bot created by Lucid for [Werewolf Kid Creations](https://werewolfkid.monster/) I am designed to delete any Twitter/X and Meta links along with corresponding reformatting services within groups\\. I now check embedded links\\! I am currently in a public beta mode\\! I require no configuration\\. Simply add me to a group and I should start deleting any Twitter\\/X and Meta links I detect\\.`,
`Welcome\\! I am a bot created by Lucid for [Werewolf Kid Creations](https://werewolfkid.monster/) I am designed to delete any Twitter/X and Meta links along with corresponding reformatting services within groups\\. I also check embedded links amd forwarded messages\\! I am currently in a public beta mode\\! Simply add me to a group and make me an admin with the permission to delete messages\\. From there I will start deleting any Twitter\\/X and Meta links I detect\\.`,
{ parse_mode: "MarkdownV2" }
);
});