so if I have written my code
myCode = {
hint "this is my code"
};
in order to lock it with compilefinal i need to edit my script in this manner
myCode = compileFinal "
hint ""this is my code""
";
Fine with one simple function, but what if I have dozens of them and more complex? What if I could just pass the name of my variable to a BIS function and get it all recompiled? Like this:
["myCode"] call BIS_fnc_compileFinal;
For inspiration:
http://killzonekid.com/arma-scripting-tutorials-bis_fnc_compilefinal/