You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update egg-five-m.json
Updated the egg with:
New startup script to use the txAdmin changes, this will use the new TXHOST_TXA_PORT
Added Game Name Options: FiveM or RedM
Added Game Type : This is used to set gamename inside server.cfg in root location. Also connected to game Name to set correct value in server.cfg
* Update README.md
Added txAdmin changes and options in the egg
* Update README.md
fix typo
* Add files via upload
Changes:
Removed deprecated +set serverProfile and +set txAdminPort ConVars.
Added export TXHOST_DATA_PATH default to define a default data directory.
Added export TXHOST_TXA_PORT {{TXADMIN_PORT}} to replace +set txAdminPort using the new method.
Added export TXHOST_GAME_NAME to support RedM also.
Startup log is now free of deprecation warnings.
* Updated env handling
Changed env handling hopefully correct now ?
* Update README.md
* Changed vars and start command
Renamed TXADMIN_PORT to TXHOST_TXA_PORT
Renamed GAME_NAME to TXHOST_GAME_NAME
"description": "Required to start the service. Get your keys at https:\/\/keymaster.fivem.net\/",
33
+
"description": "Required to start the service. Get your keys at https:\/\/portal.cfx.re\/",
34
34
"env_variable": "FIVEM_LICENSE",
35
35
"default_value": "",
36
36
"user_viewable": true,
@@ -44,7 +44,7 @@
44
44
"env_variable": "MAX_PLAYERS",
45
45
"default_value": "48",
46
46
"user_viewable": true,
47
-
"user_editable": false,
47
+
"user_editable": true,
48
48
"rules": "required|integer|between:1,48",
49
49
"field_type": "text"
50
50
},
@@ -91,7 +91,7 @@
91
91
{
92
92
"name": "txAdmin Port",
93
93
"description": "The port for the txAdmin panel",
94
-
"env_variable": "TXADMIN_PORT",
94
+
"env_variable": "TXHOST_TXA_PORT",
95
95
"default_value": "40120",
96
96
"user_viewable": true,
97
97
"user_editable": false,
@@ -107,6 +107,36 @@
107
107
"user_editable": true,
108
108
"rules": "required|boolean",
109
109
"field_type": "text"
110
+
},
111
+
{
112
+
"name": "Game Name",
113
+
"description": "Restricts to only running either FiveM or RedM servers.\r\nThe setup page will only show recipes for the game specified below !\r\nOptions are : fivem or redm",
114
+
"env_variable": "TXHOST_GAME_NAME",
115
+
"default_value": "fivem",
116
+
"user_viewable": true,
117
+
"user_editable": true,
118
+
"rules": "required|in:fivem,redm",
119
+
"field_type": "text"
120
+
},
121
+
{
122
+
"name": "Game type",
123
+
"description": "Value to be used : gta5 for FiveM and rdr3 for RedM\r\n! Dont fill in any value it reads the game name variable and set the correct value for it !",
0 commit comments