mirror of
https://github.com/djdevin/recflare-client.git
synced 2026-09-08 06:31:28 -07:00
initial
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
## Settings file was created by plugin RecNet Plugin v1.0.0
|
||||
## Plugin GUID: net.rec.plugin
|
||||
|
||||
[Advanced]
|
||||
|
||||
## Allows other fields below in the advanced section to be modified.
|
||||
# Setting type: Boolean
|
||||
# Default value: false
|
||||
Enabled Advanced Settings = false
|
||||
|
||||
## Custom Photon NameServer
|
||||
# Setting type: String
|
||||
# Default value:
|
||||
Photon NameServer =
|
||||
|
||||
## Custom Photon NameServer Port (if 0, it will be default)
|
||||
# Setting type: Int32
|
||||
# Default value: 0
|
||||
Photon NameServer Port = 0
|
||||
|
||||
## Show debug logs (HTTP tracing, etc. WARNING: will include sensitive information such as passwords and auth tokens in the logs, be careful when sharing them!)
|
||||
# Setting type: Boolean
|
||||
# Default value: false
|
||||
Debug = false
|
||||
|
||||
[Photon]
|
||||
|
||||
## Photon Realtime App ID
|
||||
# Setting type: String
|
||||
# Default value:
|
||||
App Id Realtime = 8f322bdb-2b1f-4c27-a232-01436f43d14e
|
||||
|
||||
## Photon Voice App ID
|
||||
# Setting type: String
|
||||
# Default value:
|
||||
App Id Voice = 6b4682e1-a1a9-4e04-b44a-6db0049a4df3
|
||||
|
||||
## Photon Chat App ID
|
||||
# Setting type: String
|
||||
# Default value:
|
||||
App Id Chat = 55fae86e-0459-4f97-bf6c-39c9341da6ef
|
||||
|
||||
[Server]
|
||||
|
||||
## Host for the RecNet NameServer.
|
||||
# Setting type: String
|
||||
# Default value: https://ns.rec.net
|
||||
RecNet NameServer Host = https://ns.recflare.net
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,38 @@
|
||||
@echo off
|
||||
setlocal
|
||||
|
||||
set "STEAM_USERNAME="
|
||||
set /p STEAM_USERNAME=Enter your Steam username:
|
||||
if "%STEAM_USERNAME%"=="" (
|
||||
echo No username entered - stopping.
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo === Installing DepotDownloader ===
|
||||
curl -f -L -o DepotDownloader.zip https://github.com/SteamRE/DepotDownloader/releases/download/DepotDownloader_3.4.0/DepotDownloader-windows-x64.zip || goto :error
|
||||
if not exist "DepotDownloader" mkdir "DepotDownloader"
|
||||
tar -xf DepotDownloader.zip -C DepotDownloader || goto :error
|
||||
del DepotDownloader.zip
|
||||
|
||||
echo === Downloading Rec Room depot via DepotDownloader (will prompt for Steam password) ===
|
||||
DepotDownloader\DepotDownloader.exe -app 471710 -depot 471711 -manifest 7859140924515540835 -dir . -username "%STEAM_USERNAME%" || goto :error
|
||||
|
||||
echo === Downloading BepInEx and extracting to this directory ===
|
||||
curl -f -L -o BepInEx.zip https://github.com/BepInEx/BepInEx/releases/download/v6.0.0-pre.2/BepInEx-Unity.IL2CPP-win-x64-6.0.0-pre.2.zip || goto :error
|
||||
tar -xf BepInEx.zip -C . || goto :error
|
||||
del BepInEx.zip
|
||||
|
||||
echo === Downloading RecNetPlugin.dll into BepInEx\plugins ===
|
||||
if not exist "BepInEx\plugins" mkdir "BepInEx\plugins"
|
||||
curl -f -L -o "BepInEx\plugins\RecNetPlugin.dll" https://github.com/djdevin/recnet-plugin/releases/download/0.0.2/RecNetPlugin.dll || goto :error
|
||||
|
||||
echo === Extracting bundled global-metadata into RecRoom_Data\il2cpp_data\Metadata ===
|
||||
tar -xf "RecRoom_Data\il2cpp_data\Metadata\global-metadata.zip" -C "RecRoom_Data\il2cpp_data\Metadata" || goto :error
|
||||
|
||||
echo === Done ===
|
||||
exit /b 0
|
||||
|
||||
:error
|
||||
echo.
|
||||
echo *** FAILED with error code %errorlevel% - stopping. ***
|
||||
exit /b %errorlevel%
|
||||
Reference in New Issue
Block a user