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] ];
En son battle angel tarafından düzenlendi; 11 Şub @ 20:57
< >
1 yorumdan 1 ile 1 arası gösteriliyor
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;
En son GHOST tarafından düzenlendi; 12 Şub @ 17:38
< >
1 yorumdan 1 ile 1 arası gösteriliyor
Sayfa başına: 1530 50