top of page

REMOVE ANIMALS

To remove all of the animals in the maps (rabbits, snakes, etc...), follow theses steps :

​

Create file in your mission folder named deleteanimals.sqf

copy this in it:


waitUntil {
        {
            if(agent _x isKindOf "Snake_random_F" || agent _x isKindOf "Rabbit_F" || agent _x isKindOf "Bird") then {deleteVehicle agent _x};
        } forEach agents;
        sleep 10;
        false;
};

 

 

Create init.sqf and past inside following sentence :

 

​

[] execVM "deleteanimals.sqf";

 

​

When you will launch the mission, you will not have animals anymore

Thanks to Babast from FOXCOM TEAM for this script

bottom of page