-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.json
96 lines (94 loc) · 2.52 KB
/
mod.json
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
{
"Name": "AnonymousMode",
"Description": "AnonymousMode",
"LoadPriority": 3,
"RequiredOnClient": false,
"Version": "1.4.2",
"Scripts": [
// 如果你想要在北极星服务器中使用,请注释掉下面这四行
{ //如果你想要在北极星服务器中使用,请注释掉
"Path": "_custom_codecallbacks_client.gnut", // 如果你想要在北极星服务器中使用,请注释掉
"RunOn": "CLIENT" // 如果你想要在北极星服务器中使用,请注释掉
},// 如果你想要在北极星服务器中使用,请注释掉
{
"Path": "l1nexus_anonymous.nut",
"RunOn": "(CLIENT || SERVER) && MP",
"ClientCallback": {
"After": "l1nexusAnonymousInit"
}
},
{
"Path": "ascii_table.nut",
"RunOn": "(CLIENT || SERVER) && MP",
"ClientCallback": {
"Before": "InitializeASCIITable"
}
}
],
"ConVars": [
// 启用模组
// enable this mod
{
"Name": "l1nexus_anonymous_enable",
"DefaultValue": "true"
},
// 对玩家名的操作
// mode for players' names
{
"Name": "l1nexus_anonymous_mode",
// Digital/Replace/Apexlike/Ignore
"DefaultValue": "Apexlike"
},
// 替换所有玩家的名字的占位符
// used as all players names in Replace mode
{
"Name": "l1nexus_anonymous_placeholder",
"DefaultValue": "******"
},
// 是否对击杀记录处理?
// hash the obituary?
{
"Name": "l1nexus_anonymous_hashObit",
"DefaultValue": "true"
},
// 是否替换计分板左侧玩家徽章?
// Replace the icon(badge) with yours in scoreboard?
{
"Name": "l1nexus_anonymous_replaceIcon",
"DefaultValue": "false"
},
// Apexlike 模式下的前缀 鉄御
// used for prefix in Apexlike mode Pilot
{
"Name": "l1nexus_anonymous_prefix",
"DefaultValue": "Pilot"
},
{
"Name": "l1nexus_anonymous_HidePermanentCockpitRui",
"DefaultValue": "false"
},
// 方便开发用的变量,不需要设置为true
// devMode, show player's complete name behind the modified
{
"Name": "l1nexus_anonymous_devMode",
"DefaultValue": "false"
},
// 网路tag替换为空、不更改和改动[ADV]或自定义
// Only hide the network or, ignore this, or replaced to [ADV], or custom
{
"Name": "l1nexus_anonymous_tag_mode",
// Empty/Ignore/ADV/Custom
"DefaultValue": "ADV"
},
// 自定义的网络名称
// Clantag used for all players
{
"Name": "l1nexus_anonymous_custom_tag",
// Empty/Ignore/ADV/Custom
"DefaultValue": "VDA"
}
],
"Localisation": [
"resource/anonymousmode_localisation_%language%.txt"
]
}