-
Notifications
You must be signed in to change notification settings - Fork 0
/
mod.json
46 lines (43 loc) · 1.24 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
{
"Name": "HatMann.dof.and.bloom.remover",
"Description": "Protocol 3: Protect the eyesight.",
"Version": "v1.1.0",
"LoadPriority": 7,
"ConVars": [
{
"Name": "keepEffectsInLobby",
"DefaultValue": "1",
"HelpString": "Specifies whether the effects should stay enabled in the lobby.",
"Flags": 16777216
},
{
"Name": "inGameEffectCommands",
"DefaultValue": "mat_gamma 0.85; mat_disable_bloom 1; dof_enable 0; mat_bloom_scalefactor_scalar 0",
"HelpString": "Specifies what commands should be executed by the plugin, after entering a game.",
"Flags": 16777216
},
{
"Name": "inLobbyEffectCommands",
"DefaultValue": "mat_gamma 1; mat_disable_bloom 0; dof_enable 1; mat_bloom_scalefactor_scalar 1.0",
"HelpString": "Specifies what commands should be executed by the plugin, after entering the lobby.",
"Flags": 16777216
}
],
"Scripts": [
{
"Path": "dfbr_commands_runner.nut",
"RunOn": "CLIENT",
"ClientCallback": {
"After": "initDfbrCommands"
}
},
{
"Path": "dfbr_mod_settings.nut",
"RunOn": "UI",
"UICallback": {
"Before": "initDfbrSettings"
}
}
]
}
// Special thanks to BooKooNooN, Spoon, uniboi and cat_or_nya for the help, with making this mod. Hats off, for your great help!