Send text message to VRChat user in the game, by using VRChat message API.
English | Japanese
Notice: This tool does not work on 2019/5/21, since the "message" API endpoint used by this tool is currently unavailable in VRChat system
- Download zip file at release and extract it, or prepare Python 3.7.x and clone this repository.
- Edit credential.json to replace
USERNAME
for your VRChat user name, and replacePASSWORD
for your VRChat password. - Select address bar of the folder and type
cmd
and press enter key. Then command prompt will be opened. - Check your friend's user id at VRChat. Open your friend page by clicking user icon at the right side, and see address bar. User id is the string starts with
usr_
, for exampleusr_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
- Execute
VRChat_message_sender USER_ID_OF_TARGET_USER "MESSAGE"
. Use checked user id forUSER_ID_OF_TARGET_USER
and fill message as you like inMESSAGE
. Example:
VRChat_message_sender usr_xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx "This is a test message"
In case you want to build the exe by yourself
- Install Python3.7.x
- Execute
pip install requests
- Execute
pip install pyinstaller
- Execute
pyinstaller VRChat_message_sender --onefile
- Find exe file in dist directory
These codes are licensed under MIT License. See LICENSE for details.