https://github.com/ravmda/vrc-manager
Automatic VRChat Group Management Utility
https://github.com/ravmda/vrc-manager
discord-webhook serenity-rs vrchat vrchat-api vrchat-tool vrchatapi
Last synced: 9 months ago
JSON representation
Automatic VRChat Group Management Utility
- Host: GitHub
- URL: https://github.com/ravmda/vrc-manager
- Owner: RavMda
- License: other
- Created: 2025-06-01T18:25:27.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-07-10T08:36:44.000Z (9 months ago)
- Last Synced: 2025-07-10T17:04:42.082Z (9 months ago)
- Topics: discord-webhook, serenity-rs, vrchat, vrchat-api, vrchat-tool, vrchatapi
- Language: Rust
- Homepage:
- Size: 36.1 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VRCManager - Automated VRChat Group Management Utility

Automate group moderation and management tasks in VRChat through real-time log monitoring.
## Key Features
- ๐ต๏ธโโ๏ธ Real-time monitoring of VRChat log files
- ๐ Secure authentication with 2FA support
- ๐งพ Persistent cookie storage for seamless logins
- ๐ซ Automatic group banning of users with prohibited avatars
- ๐ฌ Automatic group invites
- โ๏ธ Customizable through a simple configuration file
- ๐ฎ Discord webhook integration for real-time notifications
## How Automatic Bans Work
1. Monitors VRChat's latest log file for player join events
2. Extracts user IDs from log entries
3. Fetches user's current avatar via VRChat API
4. Checks avatar against your blocklist (`avatars.txt`)
5. Automatically bans users with prohibited avatars from your group
## Download Pre-Built Binaries
Pre-built binaries are available for download on the [Releases page](https://github.com/RavMda/vrc-manager/releases).
## Configuration
### 1. Create config file (`config.toml`)
```toml
group_id = "grp_f0db2b50-9440-4e8f-bd09-75870a423dd7"
log_avatar_id = true
avatars_file = "avatars.txt" # optional
custom_log_dir = "/home/whatever/something/vrchat" # optional
[auto_invite]
enabled = true
delay_min = 240 # seconds
delay_max = 360 # seconds
[auto_ban]
enabled = true
[discord_webhook]
enabled = true
username = "github.com/RavMda/vrc-manager"
avatar_url = "https://i.imgur.com/KTs6whd.jpg"
url = "https://discord.com/api/webhooks/01234567890123456789/ABCDEFGHIJKLMNOPQRSTUVWXYZ012345"
log_on_player_joined = true
log_on_player_left = true
log_on_avatar_changed = true
log_on_auto_invite = true
log_on_auto_ban = true
```
### 2. Create avatar file id blocklist (if automatic banning is used)
Modify existing `avatars.txt` (or your custom-named file) with one avatar file ID per line:
```
file_12345678-90ab-cdef-1234-567890abcdef
file_aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
```
## Building from Source
```bash
# Clone the repository
git clone https://github.com/RavMda/vrc-manager.git
cd vrc-manager
# Build the project
cargo build --release
# The binary will be available at "target/release" folder
# Or, you can just simply run it
cargo run --release
```
## Important Notes
- **Rate Limits**: VRChat API has rate limits - use responsibly
- **Log Format**: Depends on VRChat's current log format (may need updates)
## Contributing ๐ค
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/fooBar`)
3. Commit your changes (`git commit -am 'Add some fooBar'`)
4. Push to the branch (`git push origin feature/fooBar`)
5. Create a new Pull Request