-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKUBC.DAYZ.INFO.code-workspace
More file actions
113 lines (113 loc) · 2.8 KB
/
Copy pathKUBC.DAYZ.INFO.code-workspace
File metadata and controls
113 lines (113 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"settings": {
//Папочка где лежит конфиг сервера для запуска
"DayZ.Server.Config":"Sample\\serverDZ.cfg",
//Папочка где лежит экземпляр сервера DAYZ
"DayZ.Server.Path": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\DayZServer",
"C_Cpp.configurationWarnings": "disabled",
"C_Cpp.default.browse.path": [
"P:\\scripts",
"P:\\KUBC"
],
"C_Cpp.default.includePath": [
"P:\\scripts",
"P:\\KUBC"
],
"C_Cpp.default.systemIncludePath": [
"P:\\scripts",
"P:\\KUBC"
],
"C_Cpp.errorSquiggles": "disabled",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.workspaceSymbols": "All"
},
"folders": [
{
"name": "SERVER",
"path": "./Server"
},
{
"name": "PROFILES",
"path": "./Sample/Profiles"
},
{
"name": "Build Logs",
"path": "P:\\Temp"
},
{
"name": "ROOT",
"path": "."
},
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"detail": "Очистить логи сервера",
"label": "Clear Server Logs",
"command": "del ${workspaceFolder:PROFILES}\\*.MDMP;del ${workspaceFolder:PROFILES}\\*.log;del ${workspaceFolder:PROFILES}\\*.RPT;del ${workspaceFolder:PROFILES}\\*.ADM",
"type": "shell",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"detail": "Запустить тестовый сервер с очисткой логов",
"label": "Start Test Server",
"dependsOrder": "sequence",
"dependsOn": [
"Clear Server Logs",
"Start Debug Server"
],
"group": {
"kind": "test",
"isDefault": false
},
"problemMatcher": []
},
{
"detail": "Создать ссылочную папку на сервере",
"label": "Create Link",
"type": "shell",
"command": "cmd /c mklink /j '${config:DayZ.Server.Path}\\KUBC.DAYZ.INFO' '${workspaceFolder:SERVER}'",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"detail": "Запустить сервер модом без сборки",
"label": "Start Debug Server",
"type": "shell",
"command": "${config:DayZ.Server.Path}\\DayZServer_x64.exe",
"args": [
"-config=${workspaceFolder:ROOT}\\${config:DayZ.Server.Config}",
"-profiles=${workspaceFolder:PROFILES}",
"-port=2302",
"-doLogs",
"-adminLog",
"-freezeCheck",
"-filePatching",
"-serverMod='KUBC;KUBC.DAYZ.INFO'"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
]
}
}