Jump to content
Sign in to follow this  
iconoclastdx

Can one remove all snakes from a mission?

Recommended Posts

Do snakes freakout AI drivers? I swear that AI drivers act skittish around them sometimes. I'd like to try removing them to see if it soothes things out. Kinda surprised I couldn't find this in google.

Edited by IconoclastDX

Share this post


Link to post
Share on other sites

maybe try

[] spawn {
{
	if (_x isKindOf "Snake_random_F") then { deleteVehicle _x; };
}forEach allUnits;
};

EDIT

this should work I forgot that animals are agents

[] spawn {
while {true} do {
	{    
		if (agent _x isKindOf "Snake_random_F") then { deleteVehicle agent _x; };   
	}forEach agents; 
	sleep 2;
};
};

Edited by Lala14

Share this post


Link to post
Share on other sites
enableEnvironment false; // disable anakes, rabbits and ambient sounds

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×