Russkiy_Arma3
Member-
Content Count
7 -
Joined
-
Last visited
-
Medals
-
Lacosta8 started following Russkiy_Arma3
-
Game crashes after 1.2
Russkiy_Arma3 replied to airborne52's topic in Arma Reforger - Troubleshooting
I have the same! Please fix ASAP -
Всем привет! Если кому-то нужна пара скриптов, я имею ввиду вооплатить ваши идеи, тогда пишите, буду рад помочь!
-
Difficulty Setting Up 'Tree' GUI control
Russkiy_Arma3 replied to lawman_actual's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi again. I find the problem! There vas main class was "adc = somethink" should be "idd = somethink" so now is fine but i still have nothink))) I can understand to dialog is opened cause i can see the mouse icon come-out and standart controls stop working only working if i press ESC so dialog work but now i need some support if is possible how to make bacground and all thinks. If you could help please =) -
Difficulty Setting Up 'Tree' GUI control
Russkiy_Arma3 replied to lawman_actual's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi again. I find the problem! There vas main class was "adc = somethink" should be "idd = somethink" so now is fine but i still have nothink))) I can understand to dialog is opened cause i can see the mouse icon come-out and standart controls stop working only working if i press ESC so dialog work but now i need some support if is possible how to make bacground and all thinks. If you could help please =) -
Difficulty Setting Up 'Tree' GUI control
Russkiy_Arma3 replied to lawman_actual's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hi! Thanks for answer. There is defines.hpp #define CT_TREE 12 #define MyTag_ST_LEFT 0x00 //left aligned text //Experimental class Tree_buRusskiy { access = 0; // Control access (0 - ReadAndWrite, 1 - ReadAndCreate, 2 - ReadOnly, 3 - ReadOnlyVerified) idc = 890500; // Control identification (without it, the control won't be displayed) type = 12; // Type is 12 style = ST_LEFT; // Style default = 0; // Control selected by default (only one within a display can be used) blinkingPeriod = 0; // Time in which control will fade out and back in. Use 0 to disable the effect. x = 12 * GUI_GRID_CENTER_W + GUI_GRID_CENTER_X; // Horizontal coordinates y = 3 * GUI_GRID_CENTER_H + GUI_GRID_CENTER_Y; // Vertical coordinates w = 10 * GUI_GRID_CENTER_W; // Width h = 3 * GUI_GRID_CENTER_H; // Height colorBorder[] = {0,0,0,1}; // Frame color colorBackground[] = {0.2,0.2,0.2,1}; // Fill color colorSelect[] = {1,0.5,0,1}; // Selected item fill color (when multiselectEnabled is 0) colorMarked[] = {1,0.5,0,0.5}; // Marked item fill color (when multiselectEnabled is 1) colorMarkedSelected[] = {1,0.5,0,1}; // Selected item fill color (when multiselectEnabled is 1) sizeEx = GUI_GRID_CENTER_H; // Text size font = GUI_FONT_NORMAL; // Font from CfgFontFamilies shadow = 1; // Shadow (0 - none, 1 - N/A, 2 - black outline) colorText[] = {1,1,1,1}; // Text color colorSelectText[] = {1,1,1,1}; // Selected text color (when multiselectEnabled is 0) colorMarkedText[] = {1,1,1,1}; // Selected text color (when multiselectEnabled is 1) tooltip = "CT_TREE"; // Tooltip text tooltipColorShade[] = {0,0,0,1}; // Tooltip background color tooltipColorText[] = {1,1,1,1}; // Tooltip text color tooltipColorBox[] = {1,1,1,1}; // Tooltip frame color multiselectEnabled = 0; // Allow selecting multiple items while holding Ctrl or Shift expandOnDoubleclick = 0; // Expand/collapse item upon double-click //hiddenTexture = "A3\ui_f\data\gui\rsccommon\rsctree\hiddenTexture_ca.paa"; // Expand icon //expandedTexture = "A3\ui_f\data\gui\rsccommon\rsctree\expandedTexture_ca.paa"; // Collapse icon maxHistoryDelay = 1; // Time since last keyboard type search to reset it // Scrollbar configuration class ScrollBar { width = 0; // width of ScrollBar height = 0; // height of ScrollBar scrollSpeed = 0.01; // scroll speed of ScrollBar arrowEmpty = "\A3\ui_f\data\gui\cfg\scrollbar\arrowEmpty_ca.paa"; // Arrow arrowFull = "\A3\ui_f\data\gui\cfg\scrollbar\arrowFull_ca.paa"; // Arrow when clicked on border = "\A3\ui_f\data\gui\cfg\scrollbar\border_ca.paa"; // Slider background (stretched vertically) thumb = "\A3\ui_f\data\gui\cfg\scrollbar\thumb_ca.paa"; // Dragging element (stretched vertically) color[] = {1,1,1,1}; // Scrollbar color }; colorDisabled[] = {0,0,0,0}; // Does nothing, but must be present, otherwise an error is shown colorArrow[] = {0,0,0,0}; // Does nothing, but must be present, otherwise an error is shown //onCanDestroy = "systemChat str ['onCanDestroy',_this]; true"; //onDestroy = "systemChat str ['onDestroy',_this]; false"; //onMouseEnter = "systemChat str ['onMouseEnter',_this]; false"; //onMouseExit = "systemChat str ['onMouseExit',_this]; false"; //onSetFocus = "systemChat str ['onSetFocus',_this]; false"; //onKillFocus = "systemChat str ['onKillFocus',_this]; false"; //onKeyDown = "systemChat str ['onKeyDown',_this]; false"; //onKeyUp = "systemChat str ['onKeyUp',_this]; false"; //onMouseButtonDown = "systemChat str ['onMouseButtonDown',_this]; false"; //onMouseButtonUp = "systemChat str ['onMouseButtonUp',_this]; false"; //onMouseButtonClick = "systemChat str ['onMouseButtonClick',_this]; false"; //onMouseButtonDblClick = "systemChat str ['onMouseButtonDblClick',_this]; false"; //onMouseZChanged = "systemChat str ['onMouseZChanged',_this]; false"; //onMouseMoving = ""; //onMouseHolding = ""; //onTreeSelChanged = "systemChat str ['onTreeSelChanged',_this]; false"; //onTreeLButtonDown = "systemChat str ['onTreeLButtonDown',_this]; false"; //onTreeDblClick = "systemChat str ['onTreeDblClick',_this]; false"; //onTreeExpanded = "systemChat str ['onTreeExpanded',_this]; false"; //onTreeCollapsed = "systemChat str ['onTreeCollapsed',_this]; false"; //onTreeMouseMove = "systemChat str ['onTreeMouseMove',_this]; false"; // Causing CTD //onTreeMouseHold = "systemChat str ['onTreeMouseHold',_this]; false"; // Causing CTD //onTreeMouseExit = "systemChat str ['onTreeMouseExit',_this]; false"; }; dialogs.hpp class providerTree: Tree_buRusskiy { idc = 859550; text = "" //--- ToDo: Localize; x = 0.25; y = -0.02; w = 0.4; h = 0.18; }; -
Difficulty Setting Up 'Tree' GUI control
Russkiy_Arma3 replied to lawman_actual's topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hey all. I have some issue with this script. I have experiance with scripts and i make my own scripts is well, but this one! Oh gosh, i fight with this about 7 hours and i give up, so i ask about help please. I doo all the same like in this guide but i have next error after activate the script if some body know please help me =)