roderick805 10 Posted June 18, 2017 I am a noob and for the life cannot figure this one out. Tried searching for hours. Share this post Link to post Share on other sites
417 1 Posted June 18, 2017 I believe you need to select the passed arguments from inside the sector module's expression box Like this: [_this select 0, _this select 1] execVM "script.sqf"; That should pass the arguments to the executed script You can see the parameters being passed if you make script.sqf something like this: Spoiler params ["_modulename","_ownername"]; hint format ["%1", _modulename ]; sleep 5; hint format [" %1",_ownername] Hope that helps! Share this post Link to post Share on other sites