2023-08-20 20:44:16 +02:00
|
|
|
export function returnHelpText() {
|
|
|
|
return "# Howdy user, welcome to pluralcake\n" +
|
2024-01-08 13:43:05 +01:00
|
|
|
"pluralcake is a bot that allows you to send messages as your system's Members, with a custom profile picture, tag and nickname. \n" +
|
2023-08-20 20:44:16 +02:00
|
|
|
"It's pretty much a work in progress, and doesn't allow you to edit or delete messages, and to send pictures." +
|
|
|
|
"The currently available commands are : \n" +
|
2024-01-08 22:56:59 +01:00
|
|
|
"### Members:\n" +
|
2024-01-08 13:43:05 +01:00
|
|
|
"- list | allows you to see your currently available Members.\n" +
|
|
|
|
"- create <'name of the Member'> <'your Member's tag'>| Allows you to add a Member\n" +
|
|
|
|
"- delete <'name of the Member'> | Deletes the choosen Member\n" +
|
|
|
|
"- name <'name of the Member'> | Changes the choosen Member's name\n" +
|
|
|
|
"- avatar <'Member's name'> <'picture url'> | Allows you to edit your Member's profile picture\n" +
|
|
|
|
"- color <'Member's name'> <'color hex'> | Allows you to change the color of your Member ( may be integrated with the future website )\n"+
|
2023-12-09 22:46:55 +01:00
|
|
|
"### Migrations\n"+
|
2024-03-17 17:13:51 +01:00
|
|
|
"- tupper < Json file attached > | Migrates your Member from tupper\n"
|
|
|
|
+"### Auto proxy\n"
|
|
|
|
+"- setAutoProxy <member name> | Sets the member to automatically send messages as\n"
|
|
|
|
+"- toggleAutoProxy | Enable or disable the autoproxy"
|
2023-08-20 20:44:16 +02:00
|
|
|
}
|