I'm totally new to scripting for custom missions in ArmA, and I'm running into an issue with the execution of a .sqf file. The game knows the file is where it's supposed to be but nothing happens after.
execVM "SpecOps.sqf";
I put the above into the init boxes of several units but the commands I put in the file wont execute. This is how they are written verbatum spaces and all:
player enablestamina false;
player enablefatigue false;
player setAnimSpeedCoef 1.1;
player setUnitRecoilCoefficient 0;
player setCustomAimCoef 0;
I don't understand why they aren't working or how else to write them and i'd like it to only execute on certain units. I apologize for my ineptitude, i used the wiki but not very well apparently.