Last active
December 31, 2015 04:49
-
-
Save pavelmaca/7936749 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Preview only | |
*/ | |
{ | |
// Global switch for mod - true/false | |
"enabled": true, | |
// Enable or disable mod in battle by hotkey | |
// You can combinate max. two keys by setting "key1+key2" (need to hold both keys at same time) | |
"hotkeySwitch": "CTRL+C", | |
// Close chat when you pressed W, S, A or D key more than three times in row | |
"drivingProtection": true, | |
// Number of displayed messages at same time | |
// Available values: | |
// -1 = unlimited (original WG setup) | |
// 0 = disable chat completly | |
// number > 0 = number of displayed messages | |
"chatLength": 10, | |
// Show chat history when you start typing new message, you can scroll up/down by mouse wheel | |
"showHistory": true, | |
// Chat width (default = 250) | |
"chatWidth": 250, // (pixels) | |
// Chat background transparency (0 - 100) | |
"backgroundAlpha": 100, | |
// Blocking rules | |
// Applied in this order: squad, clan, battle type | |
// Available values: | |
// "none" - won't be applied | |
// "dead" - applied only on dead players | |
// "alive" - applied only on alive players | |
// "both" - applied on dead and alive players | |
"blockAlly": { | |
"squad": "none", // squad members | |
"clan": "none", // clan members | |
// Battle types | |
"randomBattle": "none", // random battles | |
"companyBattle": "none", // company battles | |
"specialBattle": "none", // special battles (clan wars) | |
"trainingBattle": "none" // training battles | |
}, | |
"blockEnemy": { | |
"clan": "none", // clan members | |
// Battle types | |
"randomBattle": "none", // random battles | |
"companyBattle": "none", // company battles | |
"specialBattle": "none", // special battles (clan wars) | |
"trainingBattle": "none" // training battles | |
}, | |
// Filters (antispam, WG filters, custom filters and XVM) | |
"filters": { | |
// Enable filters for these players | |
// Available values: | |
// "none" - won't be filtered | |
// "dead" - filter dead players | |
// "alive" - filter alive players | |
// "both" - filter dead and alive players | |
"filterAlly" { | |
"squad": "none", // squad members | |
"clan": "none", // clan members | |
// Battle types | |
"randomBattle": "both", // random battles | |
"companyBattle": "none", // company battles | |
"specialBattle": "none", // special battles (clan wars) | |
"trainingBattle": "none" // training battles | |
}, | |
"filterEnemy": { | |
"clan": "none", // clan members | |
// Battle types | |
"randomBattle": "both", // random battles | |
"companyBattle": "none", // company battles | |
"specialBattle": "none", // special battles (clan wars) | |
"trainingBattle": "none" // training battles | |
}, | |
"antispam": { | |
// Prevent message duplicity (per player) | |
"duplicityCount": 2, // >= 1 - Limit of identical messages from one player per interval | |
"duplicityInterval": 7, // (sec); 0 - disable | |
// Prevent spam, by setting max. number of messages per x sec from one player | |
"playerCount": 3, // >= 1 - Number of messages from one player per interval | |
"playerInterval": 7, // (sec); 0 - disable | |
}, | |
// Enable/disable set of WG filters (from lobby chat rooms), EU only | |
// Full list of bad words: https://gist.github.com/PavelMaca/3c9268e553ece98051f0#file-wgfiltereu-as | |
"WG_Filters": false, | |
// List of custom filters - block all messages containing these words or patterns | |
// See header for mor details, or visit forum topic | |
// | |
// Every word must by inside "quotes" and separated by commas. | |
"customFilters": [ | |
"siem.*", "witam.*", "clan", "recru.*", "search.*", | |
"noob.*", ".*fuck.*", "idiot.*", "uninstall", "tetris", "l2p" | |
], | |
// Filter by WN6 rating - depend on XVM mod >= 5.0 | |
"wn6": 0 // 0 = disabled; minimum {{wn}} rating | |
}, | |
// Testing mode - don't hide any messages | |
// Enable sending extra debug info massages, like "Config loaded" or "Config error..." | |
// Extended info about messages, see forum | |
"debugMode": false // true = enable | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment