Code: Select all
Error in expression <-10>
Error position: <-10>
Error -: Type , expected Expression
Does anyone have any idea what this error is?
Moderators: Lone Wolf, Snake Man
Code: Select all
Error in expression <-10>
Error position: <-10>
Error -: Type , expected Expression
Code: Select all
VIG_WP_new = compile preprocessFileLineNumbers "VIG_WP_new.sqf";
Code: Select all
// set the script up
VIG_WP_new = compile preprocessFileLineNumbers "VIG_WP_new.sqf";
// run the script
VIG_WP_new;
Code: Select all
compile preprocessFileLineNumbers "VIG_WP_new.sqf";
Code: Select all
// Pre-compile a function, with file name and line-number information stored within it.
myFunction = compile preprocessFileLineNumbers "myFunction.sqf";
// Call the function later.
_result = [_param1, _param2, _param3] call myFunction;