From cebf14a2f54bb279f8016fe56086ab54e4a772b8 Mon Sep 17 00:00:00 2001 From: Aster Fialla Date: Sun, 15 Feb 2026 16:52:08 -0500 Subject: [PATCH] updated readme and docs --- README.md | 3 ++- src/enums.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ccefbd..ea9760a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ All commands are prefixed by `pf;`. Currently only a few are implemented. - `pf;help` - Sends the current list of commands. -- `pf;import` - Imports from PluralKit using the JSON file provided by their export command. Importing from other proxy bots is *TBD*. `pf;import` and attach your JSON file to the message. +- `pf;import` - Imports from PluralKit using the JSON file provided by their export command. Importing from other proxy bots is *TBD*. `pf;import` and attach your JSON file to the message. This will only save the fields that are present in the bot currently (the stuff above), not anything else like birthdays or system handles (yet?). - `pf;member` - Accesses the sub-commands related to editing proxy members. The available subcommands are: - `new` - Creates a new member to proxy with, for example: `pf;member new jane`. The member name should ideally be short so you can write other commands with it easily. @@ -24,6 +24,7 @@ You can optionally add a display name after the member name, for example: `pf;me 1. Pass in a direct remote image URL, for example: `pf;member jane propic `. You can upload images on sites like . 2. Upload an attachment directly. **NOTE:** Fluxer does not save your attachments forever, so option #1 is recommended. + - `proxy` Updates the proxy tag for a specific member based on their name. The proxy must be formatted with the tags surrounding the word 'text', for example: `pf;member jane proxy Jane:text` or `pf;member amal proxy [text]` This is so the bot can detect what the proxy tags are. Only one proxy can be set per member currently. ## Upcoming - [ ] React with x to delete message diff --git a/src/enums.js b/src/enums.js index 0853254..63472fd 100644 --- a/src/enums.js +++ b/src/enums.js @@ -32,9 +32,9 @@ helperEnums.help = { REMOVE: "Removes a member based on their name, for example: `pf;member remove jane`.", NAME: "Updates the name for a specific member based on their current name, for ex: `pf;member john name jane`. The member name should ideally be short so you can write other commands with it easily.", DISPLAY_NAME: "Updates the display name for a specific member based on their name, for example: `pf;member jane \"Jane Doe | ze/hir\"`.This can be up to 32 characters long. If it has spaces, put it in __double quotes__.", - PROXY: "Updates the proxy tag for a specific member based on their name. The proxy must be formatted with the tags surrounding the word 'text', for example: `pf;member jane proxy Jane:text` or `pf;member amal proxy [text]` This is so the bot can detect what the proxy tags are.", + PROXY: "Updates the proxy tag for a specific member based on their name. The proxy must be formatted with the tags surrounding the word 'text', for example: `pf;member jane proxy Jane:text` or `pf;member amal proxy [text]` This is so the bot can detect what the proxy tags are. Only one proxy can be set per member currently.", PROPIC: "Updates the profile picture for the member. Must be in JPG, PNG, or WEBP format and less than 10MB. The two options are:\n1. Pass in a direct remote image URL, for example: `pf;member jane propic `. You can upload images on sites like .\n2. Upload an attachment directly.\n\n**NOTE:** Fluxer does not save your attachments forever, so option #1 is recommended.", - IMPORT: "Imports from PluralKit using the JSON file provided by their export command. Importing from other proxy bots is TBD. `pf;import` and attach your JSON file to the message." + IMPORT: "Imports from PluralKit using the JSON file provided by their export command. Importing from other proxy bots is TBD. `pf;import` and attach your JSON file to the message. This will only save the fields that are present in the bot currently (the stuff above), not anything else like birthdays or system handles (yet?)." } export const enums = helperEnums; \ No newline at end of file