Files
JogyoGaori/README.md
2025-08-07 01:18:49 +09:00

22 lines
742 B
Markdown
Executable File

# DiscordGaori
Rewritten [DiscordGaori](https://github.com/yeongaori/DiscordGaori-StarLight) with Node.js
## Features
### Rich Presence (RPC)
This bot supports Discord's Rich Presence feature, which allows you to customize the bot's status.
To configure the RPC, you need to set the following variables in your `.env` file:
- `RPC_ENABLED`: Set to `true` to enable RPC, or `false` to disable it.
- `RPC_ACTIVITY_NAME`: The name of the activity you want the bot to display (e.g., "with Gaori").
- `RPC_ACTIVITY_TYPE`: The type of activity. Can be one of `Playing`, `Listening`, `Watching`, `Streaming`, or `Competing`.
Example `.env` configuration:
```
RPC_ENABLED=true
RPC_ACTIVITY_NAME="전역일 계산"
RPC_ACTIVITY_TYPE=Playing
```