View Single Post
sneaK
SourceMod Moderator
Join Date: Feb 2015
Location: USA
Old 03-24-2017 , 12:02   Re: [CSGO] Stripper not removing deagle from some maps
Reply With Quote #10

Quote:
Originally Posted by Major Erection View Post
PHP Code:
filter:
{    
"classname" "weapon_m4a1"
"classname" "weapon_ak47"

This should do the trick. Not sure though, I just learned how to use stripper 2 days ago LOL
It needs to be separate, this would be looking for an M4 & AK-47 at the same time, which more than likely doesn't exist. So the correct way would be like so:

PHP Code:
filter:
{    
"classname" "weapon_m4a1"
}
{
"classname" "weapon_ak47"

__________________
sneaK is offline