iconoclastdx 5 Posted June 25, 2014 (edited) 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 June 25, 2014 by IconoclastDX Share this post Link to post Share on other sites
Lala14 135 Posted June 25, 2014 (edited) 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 June 25, 2014 by Lala14 Share this post Link to post Share on other sites
whiztler 137 Posted June 25, 2014 enableEnvironment false; // disable anakes, rabbits and ambient sounds Share this post Link to post Share on other sites