====== ArmA 3 CfgCommunicationMenu ====== [[https://www.pmctactical.org/forum/viewforum.php?f=68|ArmA 3 Forum]], [[:arma3|ArmA 3]], [[arma3:config|ArmA 3 Config]], [[arma3:missions|ArmA 3 Missions]], [[arma3:modeling|ArmA 3 3D Modeling]], [[arma3:scripting|ArmA 3 Scripting]], [[arma3:terrain|ArmA 3 Terrain]], [[arma3:texturing|ArmA 3 Texturing]], [[arma3:tools|ArmA 3 Tools]] **description.ext:** class CfgCommunicationMenu { class PMC_Airstrike_A10 { text = "Airstrike A10"; submenu = ""; expression = "_this execVM 'PMC\PMC_Airstrike.sqf';"; icon = ""; cursor = ""; enable = "1"; removeAfterExpressionCall = 0; }; }; **init.sqf:** // add communications menu for player 0 = [player, "PMC_Airstrike_A10", nil, nil, ""] call BIS_fnc_addCommMenuItem; **PMC_Airstrike.sqf:** // _p will be our cursor position on ground or mapview _p = _this select 1;