bumyplum
Member-
Content Count
125 -
Joined
-
Last visited
-
Medals
Community Reputation
10 GoodAbout bumyplum
-
Rank
Sergeant
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
-
I'm attempting to see how the configure audio settings is put together, I've tried looking at RscDisplayOptionsAudio.sqf how ever just shows : https://gyazo.com/9ab7effae5989aa9d47a0ba9aee89f99 whilst RscDisplayOptionsVideo.sqf shows alot more on how it's created : https://gyazo.com/9a91d4301ee101930fb46bdcec49e1e1 Does anyone know where in the files the audio menu is created?
-
Say if they started they 10 mags you'd only want them to use one or 10% of a mag or? are you wanting to count a whole squads ammo or just individuals?
-
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
configfile >> "RscListBoxKeys" possibly using -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Has any one got a clue on what to do because i'm stumped with this one -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
"IDC: -1, Class Name: BackgroundDisable Type: 0 |||IDC: 1, Class Name: CA_ButtonContinue Type: 16 |||IDC: 2, Class Name: CA_ButtonCancel Type: 16 |||IDC: 101, Class Name: CA_ButtonDefault Type: 16 |||IDC: 102, Class Name: CA_ValueKeys Type: 5 |||IDC: 103, Class Name: CA_ValueXAxis Type: 3 |||IDC: 104, Class Name: CA_ValueYAxis Type: 3 |||IDC: 105, Class Name: CA_ValueYReversed Type: 42 |||IDC: 106, Class Name: CA_ValueJoystick Type: 16 |||IDC: 108, Class Name: CA_ControlsPage Type: 4 |||IDC: 109, Class Name: PlayersName Type: 0 |||IDC: 110, Class Name: CA_MouseFiltering Type: 3 |||IDC: 113, Class Name: CA_MouseAcceleration Type: 7 |||IDC: 114, Class Name: ButtonPresets Type: 16 |||IDC: 125, Class Name: RscText Type: 0 |||IDC: 1000, Class Name: Title Type: 0 |||IDC: 1002, Class Name: CA_ControlsPageText Type: 0 |||IDC: 1003, Class Name: TextAction Type: 0 |||IDC: 1004, Class Name: TextAssignedKeys Type: 0 |||IDC: 1005, Class Name: CA_TextMouseSens Type: 0 |||IDC: 1006, Class Name: TextYReversed Type: 0 |||IDC: 1007, Class Name: TextXAxis Type: 0 |||IDC: 1008, Class Name: TextYAxis Type: 0 |||IDC: 1009, Class Name: CA_TextMouseSmoothing Type: 0 |||IDC: 1010, Class Name: CA_TextMouseAcceleration Type: 0 |||IDC: 1011, Class Name: TextGeneral Type: 0 |||IDC: 1080, Class Name: TitleBackground Type: 0 |||IDC: 1081, Class Name: MainBackground Type: 0 |||IDC: 1082, Class Name: TabsBackground Type: 0 |||IDC: 2300, Class Name: KeyboardGroup Type: 15 |||IDC: 2301, Class Name: MouseGroup Type: 15 |||IDC: 2400, Class Name: ButtonKeyboard Type: 16 |||IDC: 2401, Class Name: ButtonMouse Type: 16 |||" Details for display 4 -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
for "_i" from -1 to 99999 do { _data = ctrlType ((findDisplay 4) displayCtrl _i); if (_data isEqualTo 5 or _data isEqualTo 42 or _data isEqualTo 102) then { systemChat format["ctrlType: %1 | displayCtrl: %2", _data, _i]; } }; ^^^ returns // ctrlType : 5 | displayCtrl 102 // CT_LISTBOX ctrlType : 42 | displayCtrl 105 // CT_XLISTBOX // _data2 = ctrlShown ((findDisplay 4) displayCtrl 105); // Returns False _data3 = ((findDisplay 4) displayCtrl 105) lbText 0; // Returns Reversed _data4 = ((findDisplay 4) displayCtrl 105) lbText 1; // Returns Normal displayCtrl 5 is for Inverting Y axis on mouse therefore i can't find any other list boxes https://gyazo.com/f48f52e150511533045f9b240deacf30 // Image of all IDC and Class names for display 4 -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
ctrlType ((findDisplay 4) displayCtrl 102) // Returns 5 -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
_data = ((findDisplay 4) displayCtrl 102) lbText 0; _data2 = ((findDisplay 4) displayCtrl 102) lnbText [0,0]; _data // returns "Inventory" _data2 // returns nothing I'm not sure what i'm doing wrong -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I'll try -
Controls Listbox column 2
bumyplum replied to bumyplum's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I know that command exists I was just curious on how to get the information on the right for future reference since I'm unaware on how to do it -
So i'm attempting to get whats in the second column of the controls list box, i can get the text from the left side but not the right, _data = ((findDisplay 4) displayCtrl 102) lbText 0; // Returns Inventory. How do i get the information from the ASSIGNED KEYS section I've also tried _text = ((findDisplay 4) displayCtrl 102) lbTextRight 0; how ever it doesn't return it, any infomation is helpful, thanks
-
Are you sure "textures\prisonuniform.paa" is correct? try changing it to a default arma texture and see if it works
-
After doing some filtering i found the idd for Video ctrlActivate ((findDisplay 49) displayCtrl 301); Loads up the video setting from the pause menu how ever i'm not sure how to open the pause menu through a script
-
Try use; [player,[0,"textures\prisonuniform.paa"]] remoteExec ["setObjectTexture",0,true];
-
Are you not able to do it within the mission from debug console for example?