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
Updates Ark Survival Evolved egg to fix some common issues and requests.
RCON Password is required for RCON to function and has been changed from nullable to required.
The option to disable RCON is removed because RCON is required.
Added additional arguments variable to resolve users' issues inserting them in the wrong place due to the complicated startup parameters.
Removed deprecated userInteraction and logslocation from the egg.
Copy file name to clipboardExpand all lines: database/Seeders/eggs/source-engine/egg-ark--survival-evolved.json
+24-24Lines changed: 24 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
"version": "PTDL_v1",
5
5
"update_url": null
6
6
},
7
-
"exported_at": "2021-06-10T00:43:46+03:00",
7
+
"exported_at": "2021-07-27T14:14:20+03:00",
8
8
"name": "Ark: Survival Evolved",
9
9
"author": "dev@shepper.fr",
10
10
"description": "As a man or woman stranded, naked, freezing, and starving on the unforgiving shores of a mysterious island called ARK, use your skill and cunning to kill or tame and ride the plethora of leviathan dinosaurs and other primeval creatures roaming the land. Hunt, harvest resources, craft items, grow crops, research technologies, and build shelters to withstand the elements and store valuables, all while teaming up with (or preying upon) hundreds of other players to survive, dominate... and escape! \u2014 Gamepedia: ARK",
"startup": "{\r\n\"done\": \"Waiting commands for 127.0.0.1:\"\r\n}",
20
+
"logs": "{}",
21
21
"stop": "^C"
22
22
},
23
23
"scripts": {
@@ -44,7 +44,7 @@
44
44
"default_value": "PleaseChangeMe",
45
45
"user_viewable": true,
46
46
"user_editable": true,
47
-
"rules": "nullable|alpha_dash|between:1,100"
47
+
"rules": "required|alpha_dash|between:1,100"
48
48
},
49
49
{
50
50
"name": "Server Map",
@@ -55,15 +55,6 @@
55
55
"user_editable": true,
56
56
"rules": "required|string|max:20"
57
57
},
58
-
{
59
-
"name": "App ID",
60
-
"description": "ARK steam app id for auto updates. Leave blank to avoid auto update.",
61
-
"env_variable": "SRCDS_APPID",
62
-
"default_value": "376030",
63
-
"user_viewable": true,
64
-
"user_editable": false,
65
-
"rules": "nullable|numeric"
66
-
},
67
58
{
68
59
"name": "Server Name",
69
60
"description": "ARK server name",
@@ -73,15 +64,6 @@
73
64
"user_editable": true,
74
65
"rules": "required|string|max:128"
75
66
},
76
-
{
77
-
"name": "Use Rcon",
78
-
"description": "Enable or disable rcon system. (true or false)\r\n\r\nDefault True for the console to work.",
79
-
"env_variable": "ENABLE_RCON",
80
-
"default_value": "True",
81
-
"user_viewable": true,
82
-
"user_editable": false,
83
-
"rules": "required|string|in:True,False"
84
-
},
85
67
{
86
68
"name": "Rcon Port",
87
69
"description": "ARK rcon port used by rcon tools.",
@@ -117,6 +99,24 @@
117
99
"user_viewable": true,
118
100
"user_editable": true,
119
101
"rules": "required|boolean"
102
+
},
103
+
{
104
+
"name": "App ID",
105
+
"description": "ARK steam app id for auto updates. Leave blank to avoid auto update.",
106
+
"env_variable": "SRCDS_APPID",
107
+
"default_value": "376030",
108
+
"user_viewable": true,
109
+
"user_editable": false,
110
+
"rules": "nullable|numeric"
111
+
},
112
+
{
113
+
"name": "Additional Arguments",
114
+
"description": "Specify additional launch parameters such as -crossplay. You must include a dash - and separate each parameter with space: -crossplay -exclusivejoin",
0 commit comments