2021-08-25 12:06:46 -04:00
|
|
|
# T6
|
|
|
|
|
|
|
|
This brings IW4M-Admins's Anti-cheat to Plutonium T6
|
|
|
|
The following limitations are known:
|
|
|
|
* Can't get the recoil from weapons fire; you have to disable this detection type manually.
|
|
|
|
* in extreme cases it can produce false positives for Snap and Offset detection.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
|
|
Move `_customcallbacks.gsc` to `%localappdata%\Plutonium\storage\t6\scripts\mp\`
|
|
|
|
|
|
|
|
Add this to the WeaponNameParserConfigurations List in the StatsPluginSettings.json file:
|
|
|
|
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"Game": "T6",
|
|
|
|
"Delimiters": [
|
|
|
|
"_",
|
|
|
|
"+"
|
|
|
|
],
|
|
|
|
"WeaponSuffix": "mp",
|
|
|
|
"WeaponPrefix": null
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-08-20 11:57:03 -04:00
|
|
|
Now update the `GameDetectionTypes` list with the following, if it does not already exist:
|
2021-08-25 12:06:46 -04:00
|
|
|
|
|
|
|
```
|
2022-08-20 11:57:03 -04:00
|
|
|
"T6": [
|
2021-08-25 12:06:46 -04:00
|
|
|
"Offset",
|
2022-08-20 11:57:03 -04:00
|
|
|
"Snap",
|
|
|
|
"Strain"
|
|
|
|
]
|
|
|
|
```
|