arma:missions:misc
Differences
This shows you the differences between two versions of the page.
Previous revision | |||
— | arma:missions:misc [2024/08/01 08:23] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== ArmA 1 Missions Misc Stuff ====== | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
+ | |||
+ | ArmA mission editing topics that don't have specific home page yet, we just pile them up here until we organize them properly, sorry :) | ||
+ | |||
+ | ====== Units Playabe in Multiplayer ====== | ||
+ | |||
+ | **How to make many units/ | ||
+ | |||
+ | Well you usually do this in mission editor by double clicking the unit/ | ||
+ | < | ||
+ | class Item1 | ||
+ | { | ||
+ | position[]={11424.611328, | ||
+ | id=67; | ||
+ | side=" | ||
+ | vehicle=" | ||
+ | rank=" | ||
+ | skill=0.466667; | ||
+ | }; | ||
+ | </ | ||
+ | Now you must place one line there to make this unit playable in MP, this line is called // | ||
+ | < | ||
+ | class Item1 | ||
+ | { | ||
+ | position[]={11424.611328, | ||
+ | id=67; | ||
+ | side=" | ||
+ | vehicle=" | ||
+ | player=" | ||
+ | rank=" | ||
+ | skill=0.466667; | ||
+ | }; | ||
+ | </ | ||
+ | Very easy. After you have added the lines to all units and saved mission.sqm file, then re-load it in ArmA mission editor and you have all the edited units playable. | ||
+ | |||
+ | ====== MoveInTurret ====== | ||
+ | |||
+ | **How to move units into multiple doorguns?** | ||
+ | |||
+ | If you have vehicles (for example BIS UH60MG) which have multiple doorguns, you cannot simply use "unit moveInGunner helo;" command to move in gunners. You need to use moveInTurret command. See this example: | ||
+ | < | ||
+ | unit1 moveInTurret [helo1, | ||
+ | unit2 moveInTurret [helo1, | ||
+ | </ | ||
+ | Would move unit1 into the first and unit2 into the second doorgun. | ||