Arma 2: Operation Arrowhead

Arma 2: Operation Arrowhead

need to place unit when aiming at the ground
this code is not working for me, ie the communication menu 0,8 doesn't display the custom menu i have here

systemchat "commands loaded."; // custom menu BIS_MENU_GroupCommunication = BIS_MENU_GroupCommunication + HE_MENU_comm; // placement condition _pC = "CursorOnGround"; // main menu HE_MENU_comm = [ [ "Custom Menu", true], [ "Place", [0], "#USER:HE_MENU_place", -5, [["expression", ""]], "1", _pC] ]; // place menu HE_MENU_place = [ ["Unit placement", true], ["Church", [1], "", -5, [["expression", "['place', 'unit', 'Church'] execVM 'place.sqf'"]], "1", _pC] ];
Last edited by battle angel; 11 Feb @ 8:57pm
< >
Showing 1-1 of 1 comments
GHOST 12 Feb @ 5:37pm 
systemChat "commands loaded."; _pC = "cursorOnGround"; HE_MENU_comm = [ ["Custom Menu", true], ["Place", [0], "", -5, [["expression", "showCommandingMenu '#USER:HE_MENU_place';"]], "1", _pC] ]; HE_MENU_place = [ ["Unit placement", true], ["Church", [1], "", -5, [["expression", "['place', 'unit', 'Church'] execVM 'place.sqf'"]], "1", _pC] ]; if (isNil "BIS_MENU_GroupCommunication") then { BIS_MENU_GroupCommunication = []; }; BIS_MENU_GroupCommunication = BIS_MENU_GroupCommunication + HE_MENU_comm;
Last edited by GHOST; 12 Feb @ 5:38pm
< >
Showing 1-1 of 1 comments
Per page: 1530 50