Hello everyone, well I would like to remove the tank limit on maps L4D1 in L4D2. I'm using this to remove it, but it doesn't seem to work.
https://forums.alliedmods.net/showpo...0&postcount=15
Im using like that:
Code:
"vscript_replacer"
{
// This matches "c1m1_" to "c99m99_" for example, all Valve maps in L4D2.
"c[0-9]m[0-9]_.+"
{
// This matches all the Valve maps' scripts.
"c[0-9]m[0-9]_.+"
{
// Matches the script name and strings with RegEx.
"regex" "3"
// Increase Witch limit.
"WitchLimit = ([0-9]+)" "WitchLimit = -1"
// Increase Tank limit.
"TankLimit = ([0-9]+)" "TankLimit = -1"
}
}
}
I tried changing to values other than -1.
If anyone knows how to make this work or another method please let me know, thanks a lot in advance