View Single Post
Marttt
Veteran Member
Join Date: Jan 2019
Location: Brazil
Old 11-10-2020 , 07:05   Re: L4D2 how do I remove chainsaw or object on all maps
Reply With Quote #6

You can always check the entities list here (https://developer.valvesoftware.com/..._L4D2_Entities)

Didn't test but these are the entities related to the upgrades:

weapon_upgradepack_explosive_spawn
https://developer.valvesoftware.com/...xplosive_spawn

weapon_upgradepack_incendiary_spawn
https://developer.valvesoftware.com/...cendiary_spawn

upgrade_spawn
https://developer.valvesoftware.com/wiki/Upgrade_spawn

-----------------------------

then maybe try this:

Code:
filter:
{
	"classname"	"weapon_upgradepack_explosive_spawn"
}
{
	"classname"	"weapon_upgradepack_incendiary_spawn"
}
Code:
modify:
{
	match:
	{
		"classname" "upgrade_spawn"
	}
	replace:
	{
		"upgradepack_incendiary" "0"
		"upgradepack_explosive" "0"
	}
}
__________________

Last edited by Marttt; 11-10-2020 at 07:08.
Marttt is offline