SanAndreasUnity/Assets/Resources/config.json
Antonio Alexandru Ganea c3aebc3826
RCON Support (#96)
* Added RCON dotnet submodule

* RCON Manager

* RCON works

* Switched inter-thread passing from tasks callbacks to BlockingCollection

* Cleanup

* Config based rcon port and password

* RCON is disabled by default in config

* Added SanAndreasUnity.RCON namespace to CommandInterpreter

* Pass command to main thread first and report progress afterwards

* Minor cleanup

* Removed InvalidOperationException as it was never possible

* Moved OnLoaderFinished code in RCONManager

* Added RCONManager script to prefab

* Added meta files
2020-11-01 23:51:03 +01:00

47 lines
No EOL
1.2 KiB
JSON

{
"cl_name": "Unnamed Busta",
"cl_connect": true,
"cl_remote_hostname": "localhost",
"cl_remote_port": 14242,
"cl_model_id": 167,
"cl_drawdist_scale": 1.0,
"sv_listen": true,
"sv_name": "San Anreas Unity Server",
"sv_max_connections": 32,
"sv_port": 14242,
"game_dir": "",
"archive_paths": [
"${game_dir}/models/gta3.img",
"${game_dir}",
"${game_dir}/models/gta_int.img",
"${game_dir}/models/player.img",
"${game_dir}/anim/anim.img",
"${game_dir}/anim/cuts.img",
"${game_dir}/models/cutscene.img",
"${game_dir}/data/Paths/carrec.img",
"${game_dir}/data/script/script.img"
],
"item_paths": [
"${game_dir}/data/gta.dat",
"${game_dir}/data/vehicles.ide",
"${game_dir}/data/peds.ide",
"${game_dir}/data/default.ide"
],
"handling_path": "${game_dir}/data/handling.cfg",
"water_path": "${game_dir}/data/water.dat",
"car_colors_path": "${game_dir}/data/carcols.dat",
"anim_groups_paths": [
"${game_dir}/data/animgrp.dat"
],
"weapons_path": "${game_dir}/data/weapon.dat",
"dontLoadTextures": false,
"RCON_enabled": false,
"RCON_password": "super_secret_password",
"RCON_port": 25575
}