mark82101 0 Posted November 27, 2007 Hello! In OFP I was able to put a group of soldiers immediately inside a vehicle in this way: "_x moveincargo namevehicle" foreach units group this But in ArmA, I have problems with "foreach units group this"... Isn't the right line! Someone can help me? Share this post Link to post Share on other sites
NeMeSiS 11 Posted November 27, 2007 I think you need to use {} instead of "" now. Share this post Link to post Share on other sites
mark82101 0 Posted November 27, 2007 I think you need to use {} instead of "" now. THAAAAAAAAAAAAAANKS!!! with: {"_x moveincargo ural1"} foreach units group this WOOORK!!! Share this post Link to post Share on other sites
mark82101 0 Posted November 27, 2007 I think you need to use {} instead of "" now. THAAAAAAAAAAAAAANKS!!! Â with: {"_x moveincargo ural1"} foreach units group this WOOORK!!! Â mmhh... false alarm! Work in Init line... but in game can't put soldiers inside the vehicle Share this post Link to post Share on other sites
NeMeSiS 11 Posted November 27, 2007 Lose the "" completely, the line should look like <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">{_x moveincargo ural1} foreach units group this Share this post Link to post Share on other sites
ColonelSandersLite 0 Posted November 27, 2007 The reason for this is that {} and "" where pretty much interchangable in ofp. Arma is more strict in that {} signifies code and "" signifies a string without exception. Share this post Link to post Share on other sites