8 <lua file="game_config.lua" />
9 <!-- ******************** -->
10 <!-- * UI COLOR & ALPHA * -->
11 <!-- ******************** -->
15 <!-- all container must be initialized with those templates to use data exchange -->
16 <style style="sgc_title"
18 color="255 255 255 255"
21 case_mode="%case_normal" />
22 <style style="sgc_title2"
24 color="255 255 255 192"
27 <!-- WIDGET TO CHOOSE A COLOR -->
28 <!-- the modal window (with the color picker) -->
38 on_enter_params="game:mcwValidateColor()">
44 color="255 255 255 255"
48 hardtext="uiDefmcwCol" />
58 texture="blank.tga" />
64 texture="color_palette.tga"
66 onchange_params="game:mcwOnColorChanged()" />
72 texture="color_palette2.tga"
74 onchange_params="game:mcwOnColorChanged()" />
75 <instance template="button_ok_cancel"
80 cancel_text="uittGCCancel"
82 onclick_ok_param="game:mcwValidateColor()"
83 onclick_cancel="leave_modal"
84 onclick_cancel_param="" />
86 <!-- the 2 templates (one for each palette type) -->
87 <template name="tgcw_color"
97 posparent="#posparent"
102 button_type="push_button"
106 global_color_normal="false"
107 tx_normal="W_affected.tga"
108 tx_pushed="W_affected.tga"
109 tx_over="W_button_14_over.tga"
110 global_color_over="false"
112 params_l="game:mcwChooseColor('#title',0)"
114 global_color_pushed="false" />
121 color="255 255 255 192"
127 <template name="tgcw_color2"
137 posparent="#posparent"
138 child_resize_w="true"
142 button_type="push_button"
146 global_color_normal="false"
147 tx_normal="W_affected.tga"
148 tx_pushed="W_affected.tga"
149 tx_over="W_button_14_over.tga"
150 global_color_over="false"
152 params_l="game:mcwChooseColor('#title',1)"
154 global_color_pushed="false" />
161 color="255 255 255 192"
167 <!-- WIDGET TO CHOOSE AN INTEGER FROM A SCROLL BAR -->
168 <template name="tgcw_scrollbarint"
178 posparent="#posparent"
179 child_resize_w="true"
188 texture="W_line_hor2.tga" />
195 color="255 255 255 192"
212 tx_topright="w_scroll_R.tga"
213 tx_middle="w_scroll_l123_m.tga"
214 tx_bottomleft="w_scroll_L.tga"
215 onscroll="ddx_scroll"
216 onscrollend="ddx_scroll_end"
217 params="ui:interface:game_config:content:all" />
218 <!-- The Scroll Result view-->
225 color="255 255 255 192"
230 <!-- WIDGET TO CHOOSE A FLOAT FROM A SCROLL BAR -->
231 <template name="tgcw_scrollbarfloat"
241 posparent="#posparent"
242 child_resize_w="true"
251 texture="W_line_hor2.tga" />
258 color="255 255 255 192"
275 tx_topright="w_scroll_R.tga"
276 tx_middle="w_scroll_l123_m.tga"
277 tx_bottomleft="w_scroll_L.tga"
278 onscroll="ddx_scroll"
279 onscrollend="ddx_scroll_end"
280 params="ui:interface:game_config:content:all" />
281 <!-- The Scroll Result view-->
288 color="255 255 255 192"
293 <!-- WIDGET TO CHOOSE A BOOLEAN FROM A CHECK BOX -->
294 <template name="tgcw_checkbox"
305 posparent="#posparent"
306 child_resize_w="true"
310 button_type="toggle_button"
314 tx_normal="w_slot_on.tga"
315 tx_pushed="w_opacity_on.tga"
316 tx_over="w_slot_on.tga"
317 color="255 255 255 255"
318 col_pushed="255 255 255 255"
319 col_over="255 255 255 0"
320 onclick_l="ddx_bool_button"
321 tooltip="#tooltip" />
328 color="255 255 255 192"
334 <template name="tgcw_checkbox2"
344 posparent="#posparent"
345 child_resize_w="true"
349 button_type="toggle_button"
353 tx_normal="w_slot_on.tga"
354 tx_pushed="w_opacity_on.tga"
355 tx_over="w_slot_on.tga"
356 color="255 255 255 255"
357 col_pushed="255 255 255 255"
358 col_over="255 255 255 0"
359 onclick_l="ddx_bool_button" />
366 color="255 255 255 192"
372 <!-- WIDGET TO CHOOSE A DEFAULT SETUP -->
373 <template name="tgcw_combo_default"
383 posparent="#posparent"
389 posparent="#posparent"
393 color="255 255 255 192"
396 hardtext="uigcPreSet" />
397 <group type="combo_box"
405 <instance template="combo_box_def1" />
406 <combo_text name="uigcPreSetLow" />
407 <combo_text name="uigcPreSetMedium" />
408 <combo_text name="uigcPreSetNormal" />
409 <combo_text name="uigcPreSetHigh" />
410 <combo_text name="uigcPreSetCustom" />
414 <!-- ************** -->
415 <!-- Main container -->
416 <!-- ************** -->
417 <variable entry="UI:TEMP:VID_MODE"
420 <variable entry="UI:TEMP:VID_FREQ"
423 <variable entry="UI:TEMP:PRESET_LAND"
426 <variable entry="UI:TEMP:PRESET_CHAR"
429 <variable entry="UI:TEMP:PRESET_FX"
432 <variable entry="UI:TEMP:ANISOTROPIC"
435 <variable entry="UI:TEMP:VR_DEVICE"
438 <variable entry="UI:TEMP:TEXTURE_MODE"
441 <variable entry="UI:TEMP:LANGUAGE"
444 <variable entry="UI:TEMP:SCREEN_RATIO_MODE"
447 <define id="game_config_screen_ratio_eb"
448 value="ui:interface:game_config:content:general:screen_ratio:edit:eb" />
449 <define id="game_config_screen_ratio_cb"
450 value="ui:interface:game_config:content:general:screen_ratio:combo" />
451 <proc id="game_config_init">
452 <action handler="set"
453 params="dblink=UI:VARIABLES:ISACTIVE:GAME_CONFIG|value=1" />
454 <action handler="ddx_init"
455 params="ui:interface:game_config:content:all" />
456 <action handler="tree_reset"
457 params="ui:interface:game_config:content:sbtree:tree_list" />
458 <action handler="lua"
459 params="game:configShowOne('explanation')" />
460 <action handler="lua"
461 params="game:configInit()" />
463 <proc id="game_config_uninit">
464 <!-- Yoyo: on close window, same than cancel! -->
465 <action handler="ddx_cancel"
466 params="ui:interface:game_config:content:all" />
467 <action handler="game_config_cancel"
469 <action handler="set"
470 params="dblink=UI:VARIABLES:ISACTIVE:GAME_CONFIG|value=0" />
472 <proc id="game_config_ok">
473 <action handler="proc"
474 params="game_config_apply" />
475 <action handler="set"
476 params="target_property=ui:interface:game_config:active|value=0" />
478 <proc id="game_config_apply">
479 <action handler="game_config_change_screen_ratio_custom"
481 <action handler="ddx_update"
482 params="ui:interface:game_config:content:all" />
483 <action handler="game_config_apply"
486 <proc id="game_config_cancel">
487 <action handler="ddx_cancel"
488 params="ui:interface:game_config:content:all" />
489 <action handler="game_config_cancel"
491 <action handler="set"
492 params="target_property=ui:interface:game_config:active|value=0" />
494 <group type="container"
498 title="uiGlobalSettingsTitle"
500 line_at_bottom="false"
506 header_color="UI:SAVE:WIN:COLORS:OPT"
508 on_active_params="game_config_init"
510 on_deactive_params="game_config_uninit"
515 <group id="header_closed"
518 child_resize_w="true"
521 group_onclick_r="active_menu"
522 group_params_r="menu=ui:interface:base_menu_with_color">
524 <group id="header_opened"
530 group_onclick_r="active_menu"
531 group_params_r="menu=ui:interface:base_menu_with_color">
533 <view type="text_number" id="fps" posref="MR MR" x="-20" y="-2" color="255 255 255 255" shadow="true" fontsize="10" value="UI:VARIABLES:FPS" global_color="false" positive="true"/>
534 <view type="text" id="fpstext" posref="MR MR" x="-40" y="-2" color="255 255 255 255" shadow="true" fontsize="10" global_color="false" positive="true" hardtext="uiFPS" />
551 <group id="tree_list"
556 col_over="255 255 255 48"
557 col_select="255 255 255 80"
558 max_sizeparent="parent"
565 params="game:configShowOne('language')"
577 params="game:configShowOne('hud')"
581 name="uigcAlphaColor"
583 params="game:configShowOne('alpha_colors')"
589 params="game:configShowOne('win_colors')"
593 name="uigcWinColorR2"
595 params="game:configShowOne('win_colors_r2')"
601 params="game:configShowOne('chat_colors')"
605 name="uigcEntityColor"
607 params="game:configShowOne('entity_colors')"
611 name="uigcInSceneInterface"
616 <node id="in_scene_user"
617 name="uigcInSceneInterfaceUser"
619 params="game:configShowOne('in_scene_user')"
622 <node id="in_scene_friend"
623 name="uigcInSceneInterfaceFriend"
625 params="game:configShowOne('in_scene_friend')"
628 <node id="in_scene_enemy"
629 name="uigcInSceneInterfaceEnemy"
631 params="game:configShowOne('in_scene_enemy')"
634 <node id="in_scene_chat_messages"
635 name="uigcInSceneChatMessages"
637 params="game:configShowOne('in_scene_chat_messages')"
641 <node id="landmarkco"
642 name="uigcLandmarkColor"
644 params="game:configShowOne('landmark_colors')"
650 params="game:configShowOne('help')"
663 params="game:configShowOne('mouse')"
669 params="game:configShowOne('keyb')"
682 params="game:configShowOne('general')"
688 params="game:configShowOne('landscape')"
694 params="game:configShowOne('char')"
700 params="game:configShowOne('fx')"
706 params="game:configShowOne('vr')"
713 params="game:configShowOne('sound')"
717 <ctrl style="skin_scroll"
720 target="tree_list" />
722 <!-- ok, apply, cancel -->
723 <ctrl style="text_button_16"
728 hardtext="uiGCCancel"
729 color="255 255 255 255"
730 col_over="255 255 255 255"
731 col_pushed="255 255 255 255"
733 params_l="game_config_cancel" />
734 <ctrl style="text_button_16"
741 color="255 255 255 255"
742 col_over="255 255 255 255"
743 col_pushed="255 255 255 255"
745 params_l="game_config_apply"
747 <ctrl style="text_button_16"
754 color="255 255 255 255"
755 col_over="255 255 255 255"
756 col_pushed="255 255 255 255"
758 params_l="game_config_ok" />
768 <instance template="box_widget"
783 <group id="explanation"
789 child_resize_h="true"
790 child_resize_hmargin="4"
792 max_sizeparent="crop"
795 <group type="scroll_text"
798 child_resize_h="true"
799 child_resize_wmargin="16"
800 child_resize_hmargin="16"
808 hardtext="uiCongifExplanation"
811 justification="justified"
812 color="255 255 255 160"
823 <ctrl style="skin_scroll"
839 child_resize_h="true"
840 child_resize_hmargin="4"
842 max_sizeparent="crop"
846 <view style="sgc_title"
852 hardtext="uiGeneralColor" />
853 <view style="sgc_title2"
859 hardtext="uiScreen" />
860 <instance template="tgcw_scrollbarfloat"
867 <instance template="tgcw_scrollbarfloat"
874 <instance template="tgcw_scrollbarfloat"
881 <instance template="tgcw_checkbox"
888 <!-- Special case for video modes -->
889 <group id="fullscreen"
893 child_resize_w="true"
897 button_type="toggle_button"
901 tx_normal="w_slot_on.tga"
902 tx_pushed="w_opacity_on.tga"
903 tx_over="w_slot_on.tga"
904 color="255 255 255 255"
905 col_pushed="255 255 255 255"
906 col_over="255 255 255 0"
907 onclick_l="game_config_change_vid_fullscreen"
915 color="255 255 255 192"
918 hardtext="uiFullscreen" />
920 <group type="combo_box"
924 value="UI:TEMP:VID_MODE"
925 posparent="fullscreen"
929 <instance template="combo_box_def1" />
931 <link expr="@UI:TEMP:VID_MODE"
932 action="game_config_change_vid_mode" />
933 <group type="combo_box"
937 value="UI:TEMP:VID_FREQ"
938 posparent="video_modes"
942 <instance template="combo_box_def1" />
944 <!-- deactivate this or vsync must be rechecked -->
945 <!--<link expr="@UI:TEMP:VID_FREQ"
946 action="game_config_change_vid_freq" />-->
947 <!-- Special case for texture modes -->
948 <group id="texture_mode"
960 color="255 255 255 192"
963 hardtext="uigcTextureMode" />
964 <group type="combo_box"
968 value="UI:TEMP:TEXTURE_MODE"
973 <instance template="combo_box_def1" />
975 <link expr="@UI:TEMP:TEXTURE_MODE"
976 action="game_config_change_texture_mode" />
978 <!-- Special case for Screen Aspect Ratio -->
979 <!-- see game_config_screen_ratio_* defines -->
980 <group id="screen_ratio"
981 posparent="texture_mode"
992 color="255 255 255 192"
995 hardtext="uigcScreenRatio" />
996 <instance template="text_tt"
998 tooltip="uigcttScreenRatio" />
999 <instance template="edit_box_widget"
1009 enter_loose_focus="true"
1011 onenter="game_config_change_screen_ratio_custom"
1012 enter_recover_focus="false"
1013 reset_focus_on_hide="true"
1015 entry_type="positive_float"
1018 onchange_params="target_property=ui:interface:game_config:content:apply:frozen|value=0" />
1019 <group type="combo_box"
1023 value="UI:TEMP:SCREEN_RATIO_MODE"
1028 <instance template="combo_box_def1" />
1029 <combo_text name="uigcScreenRatio43" />
1030 <combo_text name="uigcScreenRatio169" />
1031 <combo_text name="uigcScreenRatioCustom" />
1032 <combo_text name="uiConfigAuto" />
1034 <link expr="@UI:TEMP:SCREEN_RATIO_MODE"
1035 action="game_config_change_screen_ratio_mode" />
1038 <ctrl style="skin_scroll"
1047 <group id="landscape"
1054 child_resize_h="true"
1055 child_resize_hmargin="4"
1057 max_sizeparent="crop"
1060 <view style="sgc_title"
1066 hardtext="uiLandGeneral" />
1067 <instance template="tgcw_combo_default"
1068 value="UI:TEMP:PRESET_LAND" />
1069 <view style="sgc_title2"
1075 hardtext="uiLand" />
1076 <!-- NB float are mul by 10000 -->
1077 <instance template="tgcw_scrollbarfloat"
1084 <instance template="tgcw_scrollbarfloat"
1091 <instance template="tgcw_scrollbarfloat"
1098 <instance template="tgcw_checkbox"
1105 <instance template="tgcw_scrollbarfloat"
1107 text="uiMicroVegetDensity"
1113 <ctrl style="skin_scroll"
1129 child_resize_h="true"
1130 child_resize_hmargin="4"
1132 max_sizeparent="crop"
1135 <view style="sgc_title"
1141 hardtext="uiCharPoly" />
1142 <instance template="tgcw_combo_default"
1143 value="UI:TEMP:PRESET_CHAR" />
1144 <view style="sgc_title2"
1150 hardtext="uiCharModel" />
1151 <instance template="tgcw_scrollbarint"
1153 text="uiCharMaxPoly"
1158 <instance template="tgcw_scrollbarint"
1160 text="uiCharMaxNotCLod"
1165 <instance template="tgcw_scrollbarfloat"
1167 text="uiCharFarClip"
1168 posparent="maxnotclod"
1172 <instance template="tgcw_checkbox"
1174 text="uiEnableRacialAnimation"
1180 <ctrl style="skin_scroll"
1196 child_resize_h="true"
1197 child_resize_hmargin="4"
1199 max_sizeparent="crop"
1202 <view style="sgc_title"
1208 hardtext="uiFXGeneral" />
1209 <instance template="tgcw_combo_default"
1210 value="UI:TEMP:PRESET_FX" />
1211 <view style="sgc_title2"
1217 hardtext="uiFxLimitations" />
1218 <instance template="tgcw_scrollbarint"
1226 <instance template="tgcw_checkbox" id="cloud" text="uiFxCloud" posparent="maxpoly" posref="BL TL" x="-20" y="-12" />
1227 <instance template="tgcw_scrollbarfloat" id="cqual" text="uiFxCloudQuality" posparent="cloud" posref="BL TL" x="20" y="-2" />
1228 <instance template="tgcw_scrollbarint" id="cup" text="uiFxCloudUpdate" posparent="cqual" posref="BL TL" x="0" y="-2" />
1230 <instance template="tgcw_checkbox"
1237 <instance template="tgcw_checkbox"
1244 <group id="anisotropic_gr"
1257 color="255 255 255 192"
1260 hardtext="uigcFxAnisotropicFilter" />
1261 <group type="combo_box"
1265 value="UI:TEMP:ANISOTROPIC"
1270 <instance template="combo_box_def1" />
1272 <link expr="@UI:TEMP:ANISOTROPIC"
1273 action="game_config_change_anisotropic" />
1275 <group id="bloom_gr"
1276 posparent="anisotropic_gr"
1283 tooltip="uiFxTooltipBloom"
1284 tooltip_parent="win">
1285 <instance template="tgcw_checkbox"
1291 <instance template="tgcw_checkbox"
1293 text="uiFxSquareBloom"
1298 <instance template="tgcw_scrollbarfloat"
1300 text="uiFxDensityBloom"
1301 posparent="square_bloom"
1307 <ctrl style="skin_scroll"
1323 child_resize_h="true"
1324 child_resize_hmargin="4"
1326 max_sizeparent="crop"
1329 <!-- Entities Names -->
1330 <view style="sgc_title"
1337 <!--<instance template="tgcw_checkbox" id="suc" text="uiShowUnderCursor" posref="TL TL" x="0" y="-20" />
1338 <instance template="tgcw_checkbox" id="sta" text="uiShowTargeted" posref="BL TL" posparent="suc" x="0" y="-12" />-->
1339 <instance template="tgcw_checkbox"
1341 text="uiSelectWithRClick"
1345 <instance template="tgcw_checkbox"
1347 text="uiFollowOnAtk"
1352 <instance template="tgcw_checkbox"
1354 text="uiAtkOnSelect"
1359 <instance template="tgcw_checkbox"
1361 text="uiAutoEquipTool"
1366 <instance template="tgcw_checkbox"
1368 text="uiAutomaticCamera"
1373 <instance template="tgcw_checkbox"
1380 <instance template="tgcw_scrollbarint"
1382 text="uiCharOpacityMin"
1387 <instance template="tgcw_checkbox"
1389 text="uiCurrentActionOut"
1390 tooltip="uittCurrentActionOut"
1395 <instance template="tgcw_checkbox"
1398 tooltip="uittShowClock"
1403 <instance template="tgcw_checkbox"
1405 text="uiShowClock12h"
1406 tooltip="uittShowClock12h"
1408 posparent="show_clock"
1411 <instance template="tgcw_checkbox"
1413 text="uiShowReticle"
1414 tooltip="uittShowReticle"
1416 posparent="show_clock_12h"
1419 <instance template="tgcw_checkbox"
1420 id="radar_use_camera"
1421 text="uiRadarUseCamera"
1422 tooltip="uittRadarUseCamera"
1424 posparent="show_reticle"
1428 <ctrl style="skin_scroll"
1437 <group id="language"
1444 child_resize_h="true"
1445 child_resize_hmargin="4"
1447 max_sizeparent="crop"
1450 <!-- Language selector -->
1451 <view style="sgc_title"
1457 hardtext="uigcLanguage" />
1458 <group type="combo_box"
1462 value="UI:TEMP:LANGUAGE"
1466 <instance template="combo_box_def1" />
1467 <combo_text name="uigcEnglish" />
1468 <combo_text name="uigcFrancais" />
1469 <combo_text name="uigcDeutch" />
1470 <combo_text name="uigcRussian" />
1471 <combo_text name="uigcSpanish" />
1473 <link expr="@UI:TEMP:LANGUAGE"
1474 action="game_config_change_language" />
1476 <ctrl style="skin_scroll"
1485 <group id="alpha_colors"
1492 child_resize_h="true"
1493 child_resize_hmargin="4"
1495 max_sizeparent="crop"
1498 <!-- Night and day colors -->
1499 <view style="sgc_title"
1505 hardtext="uiGlobalColor" />
1506 <view style="sgc_title2"
1512 hardtext="uiUIColor" />
1513 <instance template="tgcw_color"
1517 tooltip="uittColDay"
1522 <instance template="tgcw_color"
1525 title="uiDefNightCol"
1526 tooltip="uittColNight"
1531 <!-- Global Opacity -->
1532 <view style="sgc_title2"
1538 hardtext="uiGlobalOpacity"
1539 posparent="col_night" />
1540 <instance template="tgcw_scrollbarint"
1547 <instance template="tgcw_scrollbarint"
1549 text="uiAlphaContent"
1554 <!-- MouseOver Opacity -->
1555 <view style="sgc_title2"
1561 hardtext="uiMouseOverOpacity"
1562 posparent="ga_con" />
1563 <instance template="tgcw_scrollbarint"
1565 text="uiAlphaRolloverBG"
1570 <instance template="tgcw_scrollbarint"
1572 text="uiAlphaRolloverContent"
1577 <instance template="tgcw_scrollbarint"
1579 text="uiRolloverAlphaSpeed"
1584 <instance template="tgcw_checkbox"
1585 id="show_3d_item_preview"
1586 text="uiShow3dItemPreview"
1587 tooltip="uittShow3dItemPreview"
1589 posparent="moa_speed"
1593 <ctrl style="skin_scroll"
1594 id="sb_alpha_colors"
1596 target="alpha_colors"
1602 <group id="chat_colors"
1609 child_resize_h="true"
1610 child_resize_hmargin="4"
1612 max_sizeparent="crop"
1615 <!-- Chat colors -->
1616 <view style="sgc_title"
1621 hardtext="uiChatColors" />
1622 <instance template="tgcw_color"
1626 tooltip="uittChooseSayColor"
1630 <instance template="tgcw_color"
1634 tooltip="uittChooseTellColor"
1639 <instance template="tgcw_color"
1643 tooltip="uittChooseTeamColor"
1648 <instance template="tgcw_color"
1652 tooltip="uittChooseGuildColor"
1657 <instance template="tgcw_color"
1659 text="uiRegionColor"
1661 tooltip="uittChooseRegionColor"
1663 posparent="cc_guild"
1666 <instance template="tgcw_color"
1670 tooltip="uittChooseUnivColor"
1672 posparent="cc_region"
1675 <instance template="tgcw_color"
1679 tooltip="uittChooseShoutColor"
1684 <instance template="tgcw_color"
1688 tooltip="uittChooseDynColor0"
1690 posparent="cc_shout"
1693 <instance template="tgcw_color"
1697 tooltip="uittChooseDynColor1"
1702 <instance template="tgcw_color"
1706 tooltip="uittChooseDynColor2"
1711 <instance template="tgcw_color"
1715 tooltip="uittChooseDynColor3"
1720 <instance template="tgcw_color"
1724 tooltip="uittChooseDynColor4"
1729 <instance template="tgcw_color"
1733 tooltip="uittChooseDynColor5"
1738 <instance template="tgcw_color"
1742 tooltip="uittChooseDynColor6"
1747 <instance template="tgcw_color"
1751 tooltip="uittChooseDynColor7"
1756 <instance template="tgcw_checkbox"
1757 id="enter_dontquit_cb"
1758 text="uiEnterDontQuitCB"
1759 tooltip="uittChatEnter"
1764 <instance template="tgcw_checkbox"
1765 id="show_times_in_chat_cb"
1766 text="uiShowTimesInChatCB"
1767 tooltip="uittShowTimesInChat"
1768 posparent="enter_dontquit_cb"
1772 <instance template="tgcw_checkbox"
1773 id="show_dyn_channel_name_in_chat_cb"
1774 text="uiShowDynChannelNameInChatCB"
1775 tooltip="uittShowDynChannelNameInChat"
1776 posparent="show_times_in_chat_cb"
1780 <instance template="tgcw_checkbox"
1781 id="show_online_offline_notifications_cb"
1782 text="uiShowOnlineOfflineNotifications"
1783 tooltip="uittShowOnlineOfflineNotifications"
1784 posparent="show_dyn_channel_name_in_chat_cb"
1788 <instance template="tgcw_scrollbarint"
1792 posparent="show_online_offline_notifications_cb"
1795 <link expr="@UI:SAVE:CHAT:ENTER_DONT_QUIT_CB"
1796 target="enter_dontquit_cb:c:pushed" />
1797 <link expr="@UI:SAVE:CHAT:SHOW_TIMES_IN_CHAT_CB"
1798 target="show_times_in_chat_cb:c:pushed" />
1799 <link expr="@UI:SAVE:CHAT:SHOW_DYN_CHANNEL_NAME_IN_CHAT_CB"
1800 target="show_dyn_channel_name_in_chat_cb:c:pushed" />
1801 <link expr="@UI:SAVE:CHAT:SHOW_ONLINE_OFFLINE_NOTIFICATIONS_CB"
1802 target="show_online_offline_notifications_cb:c:pushed" />
1804 <ctrl style="skin_scroll"
1807 target="chat_colors"
1813 <group id="entity_colors"
1820 child_resize_h="true"
1821 child_resize_hmargin="4"
1823 max_sizeparent="crop"
1826 <!-- Entity colors -->
1827 <view style="sgc_title"
1832 hardtext="uiEntityColors" />
1833 <instance template="tgcw_color"
1837 tooltip="uittUserColor"
1841 <instance template="tgcw_color"
1843 text="uiTargetColor"
1844 title="uiTargetColor"
1845 tooltip="uittTargetColor"
1850 <instance template="tgcw_color"
1853 title="uiGroupColor"
1854 tooltip="uittGroupColor"
1856 posparent="cc_target"
1859 <instance template="tgcw_color"
1861 text="uiGuildRadarColor"
1862 title="uiGuildRadarColor"
1863 tooltip="uittGuildRadarColor"
1865 posparent="cc_group"
1868 <instance template="tgcw_color"
1870 text="uiPlayerColor"
1871 title="uiPlayerColor"
1872 tooltip="uittPlayerColor"
1874 posparent="cc_guild"
1877 <instance template="tgcw_color"
1881 tooltip="uittNPCColor"
1883 posparent="cc_player"
1886 <instance template="tgcw_color"
1889 title="uiFaunaColor"
1890 tooltip="uittFaunaColor"
1895 <instance template="tgcw_color"
1898 title="uiMountColor"
1899 tooltip="uittMountColor"
1901 posparent="cc_fauna"
1904 <instance template="tgcw_color"
1907 title="uiBeastColor"
1908 tooltip="uittBeastColor"
1910 posparent="cc_mount"
1913 <instance template="tgcw_color"
1915 text="uiSourceColor"
1916 title="uiSourceColor"
1917 tooltip="uittSourceColor"
1919 posparent="cc_beast"
1922 <instance template="tgcw_color"
1926 tooltip="uittDeadColor"
1928 posparent="cc_source"
1931 <instance template="tgcw_color"
1933 text="uiPvpEnemyColor"
1934 title="uiPvpEnemyColor"
1935 tooltip="uittPvpEnemyColor"
1940 <instance template="tgcw_color"
1942 text="uiPvpAllyColor"
1943 title="uiPvpAllyColor"
1944 tooltip="uittPvpAllyColor"
1946 posparent="cc_pvpenemy"
1949 <instance template="tgcw_color"
1950 id="cc_pvpallyinteam"
1951 text="uiPvpAllyInTeamColor"
1952 title="uiPvpAllyInTeamColor"
1953 tooltip="uittPvpAllyInTeamColor"
1955 posparent="cc_pvpally"
1958 <instance template="tgcw_color"
1959 id="cc_pvpallyinguild"
1960 text="uiPvpAllyInGuildColor"
1961 title="uiPvpAllyInGuildColor"
1962 tooltip="uittPvpAllyInGuildColor"
1964 posparent="cc_pvpallyinteam"
1967 <instance template="tgcw_color"
1969 text="uiPvpNeutralColor"
1970 title="uiPvpNeutralColor"
1971 tooltip="uittPvpNeutralColor"
1973 posparent="cc_pvpallyinguild"
1977 <ctrl style="skin_scroll"
1978 id="sb_entity_colors"
1980 target="entity_colors"
1986 <group id="in_scene_user"
1993 child_resize_h="true"
1994 child_resize_hmargin="4"
1996 max_sizeparent="crop"
1999 <!-- In scene user colors -->
2000 <view style="sgc_title"
2005 hardtext="uiUserIS" />
2006 <instance template="tgcw_checkbox"
2007 id="is_user_guild_symbol"
2008 text="uiGuildSymbol"
2009 tooltip="uittGuildSymbol"
2013 <instance template="tgcw_checkbox"
2018 posparent="is_user_guild_symbol"
2021 <instance template="tgcw_checkbox"
2026 posparent="is_user_name"
2029 <instance template="tgcw_checkbox"
2032 tooltip="uittRpTags"
2034 posparent="is_user_title"
2037 <instance template="tgcw_checkbox"
2038 id="is_user_guild_name"
2039 text="uigcGuildName"
2040 tooltip="uittGuildName"
2042 posparent="is_user_rptags"
2045 <instance template="tgcw_checkbox"
2050 posparent="is_user_guild_name"
2053 <instance template="tgcw_checkbox"
2058 posparent="is_user_hp"
2061 <instance template="tgcw_checkbox"
2066 posparent="is_user_sap"
2069 <instance template="tgcw_checkbox"
2074 posparent="is_user_sta"
2077 <instance template="tgcw_checkbox"
2080 tooltip="uittActionBar"
2082 posparent="is_user_focus"
2085 <instance template="tgcw_checkbox"
2086 id="is_user_pvp_logo"
2088 tooltip="uittPvpLogo"
2090 posparent="is_user_action"
2094 <ctrl style="skin_scroll"
2095 id="sb_in_scene_user"
2097 target="in_scene_user"
2103 <group id="in_scene_friend"
2110 child_resize_h="true"
2111 child_resize_hmargin="4"
2113 max_sizeparent="crop"
2116 <!-- In scene friend colors -->
2117 <view style="sgc_title"
2122 hardtext="uiFriendIS" />
2123 <instance template="tgcw_checkbox"
2124 id="is_friend_guild_symbol"
2125 text="uiGuildSymbol"
2126 tooltip="uittGuildSymbol"
2130 <instance template="tgcw_checkbox"
2135 posparent="is_friend_guild_symbol"
2138 <instance template="tgcw_checkbox"
2139 id="is_friend_title"
2143 posparent="is_friend_name"
2146 <instance template="tgcw_checkbox"
2147 id="is_friend_rptags"
2149 tooltip="uittRpTags"
2151 posparent="is_friend_title"
2154 <instance template="tgcw_checkbox"
2155 id="is_friend_guild_name"
2156 text="uigcGuildName"
2157 tooltip="uittGuildName"
2159 posparent="is_friend_rptags"
2162 <instance template="tgcw_checkbox"
2167 posparent="is_friend_guild_name"
2170 <instance template="tgcw_checkbox"
2175 posparent="is_friend_hp"
2178 <instance template="tgcw_checkbox"
2183 posparent="is_friend_sap"
2186 <instance template="tgcw_checkbox"
2187 id="is_friend_focus"
2191 posparent="is_friend_sta"
2194 <instance template="tgcw_checkbox"
2195 id="is_friend_pvp_logo"
2197 tooltip="uittPvpLogo"
2199 posparent="is_friend_focus"
2202 <instance template="tgcw_checkbox"
2203 id="is_friend_npcname"
2204 text="uiWindowNpcName"
2205 tooltip="uittNpcName"
2207 posparent="is_friend_pvp_logo"
2210 <instance template="tgcw_checkbox"
2211 id="is_friend_npctitle"
2213 tooltip="uittNpcTitle"
2215 posparent="is_friend_npcname"
2218 <instance template="tgcw_checkbox"
2219 id="is_friend_mission_icon"
2220 text="uiMissionIcon"
2221 tooltip="uittMissionIcon"
2223 posparent="is_friend_npctitle"
2226 <instance template="tgcw_checkbox"
2227 id="is_friend_mission_mini_icon"
2228 text="uiMiniMissionIcon"
2229 tooltip="uittMiniMissionIcon"
2231 posparent="is_friend_mission_icon"
2235 <ctrl style="skin_scroll"
2236 id="sb_in_scene_friend"
2238 target="in_scene_friend"
2244 <group id="in_scene_enemy"
2251 child_resize_h="true"
2252 child_resize_hmargin="4"
2254 max_sizeparent="crop"
2257 <!-- In scene enemy colors -->
2258 <view style="sgc_title"
2263 hardtext="uiEnemyIS" />
2264 <instance template="tgcw_checkbox"
2265 id="is_enemy_guild_symbol"
2266 text="uiGuildSymbol"
2267 tooltip="uittGuildSymbol"
2271 <instance template="tgcw_checkbox"
2276 posparent="is_enemy_guild_symbol"
2279 <instance template="tgcw_checkbox"
2284 posparent="is_enemy_name"
2287 <instance template="tgcw_checkbox"
2288 id="is_enemy_rptags"
2290 tooltip="uittRpTags"
2292 posparent="is_enemy_title"
2295 <instance template="tgcw_checkbox"
2296 id="is_enemy_guild_name"
2297 text="uigcGuildName"
2298 tooltip="uittGuildName"
2300 posparent="is_enemy_rptags"
2303 <instance template="tgcw_checkbox"
2308 posparent="is_enemy_guild_name"
2311 <instance template="tgcw_checkbox"
2312 id="is_ennemy_pvp_logo"
2314 tooltip="uittPvpLogo"
2316 posparent="is_enemy_hp"
2320 <ctrl style="skin_scroll"
2321 id="sb_in_scene_enemy"
2323 target="in_scene_enemy"
2329 <group id="in_scene_chat_messages"
2336 child_resize_h="true"
2337 child_resize_hmargin="4"
2339 max_sizeparent="crop"
2342 <!-- In scene enemy colors -->
2343 <view style="sgc_title"
2348 hardtext="uiChatIS" />
2349 <instance template="tgcw_checkbox"
2350 id="is_user_messages"
2351 text="uiUserMessages"
2352 tooltip="uittUserMessages"
2356 <instance template="tgcw_checkbox"
2357 id="is_friend_messages"
2358 text="uiFriendMessages"
2359 tooltip="uittFriendMessages"
2361 posparent="is_user_messages"
2364 <instance template="tgcw_checkbox"
2365 id="is_enemy_messages"
2366 text="uiEnemyMessages"
2367 tooltip="uittEnemyMessages"
2369 posparent="is_friend_messages"
2373 <ctrl style="skin_scroll"
2374 id="sb_in_scene_chat_messages"
2376 target="in_scene_chat_messages"
2382 <group id="win_colors"
2389 child_resize_h="true"
2390 child_resize_hmargin="4"
2392 max_sizeparent="crop"
2396 <view style="sgc_title"
2401 hardtext="uiWinColors" />
2402 <instance template="tgcw_color"
2406 tooltip="uittChoosePlaColor"
2410 <instance template="tgcw_color"
2414 tooltip="uittChooseInvColor"
2419 <instance template="tgcw_color"
2423 tooltip="uittChooseAniColor"
2428 <instance template="tgcw_color"
2432 tooltip="uittChooseHelColor"
2437 <instance template="tgcw_color"
2441 tooltip="uittChooseInfColor"
2446 <instance template="tgcw_color"
2450 tooltip="uittChooseOptColor"
2452 posparent="wc_infos"
2455 <instance template="tgcw_color"
2459 tooltip="uittChooseMemColor"
2464 <instance template="tgcw_color"
2468 tooltip="uittChooseLabColor"
2473 <instance template="tgcw_color"
2477 tooltip="uittChooseComColor"
2482 <instance template="tgcw_color"
2486 tooltip="uittChooseTraColor"
2491 <instance template="tgcw_color"
2495 tooltip="uittChooseBotColor"
2497 posparent="wc_trade"
2501 <ctrl style="skin_scroll"
2509 <group id="win_colors_r2"
2516 child_resize_h="true"
2517 child_resize_hmargin="4"
2519 max_sizeparent="crop"
2522 <view style="sgc_title"
2527 hardtext="uiR2WinColors" />
2528 <instance template="tgcw_color"
2531 title="uiCCDR2_palette"
2532 tooltip="uittR2_Palette"
2536 <instance template="tgcw_color"
2539 title="uiCCDR2_scenario"
2540 tooltip="uittR2_Scenario"
2541 posparent="wc_r2_palette"
2545 <instance template="tgcw_color"
2546 id="wc_r2_prop_window"
2547 text="uiR2Prop_window"
2548 title="uiCCDR2_prop_window"
2549 tooltip="uittR2_Prop_window"
2550 posparent="wc_r2_scenario"
2554 <instance template="tgcw_color"
2557 title="uiCCDR2_form"
2558 tooltip="uittR2_Form"
2559 posparent="wc_r2_prop_window"
2563 <instance template="tgcw_color"
2564 id="wc_r2_custom_look"
2565 text="uiR2Custom_look"
2566 title="uiCCDR2_custom_look"
2567 tooltip="uittR2_Custom_look"
2568 posparent="wc_r2_form"
2572 <instance template="tgcw_color"
2575 title="uiCCDR2_dialogs"
2576 tooltip="uittR2_Dialogs"
2577 posparent="wc_r2_custom_look"
2581 <instance template="tgcw_color"
2584 title="uiCCDR2_events"
2585 tooltip="uittR2_Events"
2586 posparent="wc_r2_dialogs"
2590 <instance template="tgcw_color"
2591 id="wc_r2_activities"
2592 text="uiR2Activities"
2593 title="uiCCDR2_activities"
2594 tooltip="uittR2_Activities"
2595 posparent="wc_r2_events"
2599 <instance template="tgcw_color"
2600 id="wc_r2_feature_help"
2601 text="uiR2Feature_help"
2602 title="uiCCDR2_feature_help"
2603 tooltip="uittR2_Feature_help"
2604 posparent="wc_r2_activities"
2608 <instance template="tgcw_color"
2611 title="uiCCDR2_connect"
2612 tooltip="uittR2_Connect"
2613 posparent="wc_r2_feature_help"
2617 <instance template="tgcw_color"
2618 id="wc_r2_session_browser"
2619 text="uiR2Session_browser"
2620 title="uiCCDR2_session_browser"
2621 tooltip="uittR2_Session_browser"
2622 posparent="wc_r2_connect"
2626 <instance template="tgcw_color"
2627 id="wc_r2_scenario_control"
2628 text="uiR2Scenario_control"
2629 title="uiCCDR2_scenario_control"
2630 tooltip="uittR2_Scenario_control"
2631 posparent="wc_r2_session_browser"
2635 <instance template="tgcw_color"
2636 id="wc_r2_player_tracking"
2637 text="uiR2Player_tracking"
2638 title="uiCCDR2_player_tracking"
2639 tooltip="uittR2_Player_tracking"
2640 posparent="wc_r2_scenario_control"
2645 <ctrl style="skin_scroll"
2646 id="sb_win_colors_r2"
2648 target="win_colors_r2"
2661 child_resize_h="true"
2662 child_resize_hmargin="4"
2664 max_sizeparent="crop"
2667 <view style="sgc_title"
2672 hardtext="uiMouseOptions" />
2673 <instance template="tgcw_checkbox"
2675 text="uiMouseHardware"
2679 <instance template="tgcw_checkbox"
2681 text="uiMouseInverted"
2686 <instance template="tgcw_checkbox"
2688 text="uiMouseDblClickMode"
2689 posparent="inverted"
2693 <view style="sgc_title2"
2699 hardtext="uiMouseInterface" />
2700 <instance template="tgcw_scrollbarint"
2702 text="uiDoubleClickSpeed"
2707 <instance template="tgcw_scrollbarfloat"
2709 text="uiCursorSpeed"
2714 <instance template="tgcw_scrollbarint"
2716 text="uiCursorAccel"
2717 posparent="curspeed"
2721 <view style="sgc_title2"
2725 hardtext="uiMouseHead"
2726 posparent="curaccel"
2729 <instance template="tgcw_scrollbarfloat"
2736 <instance template="tgcw_scrollbarint"
2739 posparent="headspeed"
2744 <ctrl style="skin_scroll"
2760 child_resize_h="true"
2761 child_resize_hmargin="4"
2763 max_sizeparent="crop"
2766 <view style="sgc_title"
2771 hardtext="uiKeybOptions" />
2772 <view style="sgc_title2"
2778 hardtext="uiKeybCamera" />
2779 <instance template="tgcw_scrollbarfloat"
2781 text="uiKeybCamSpeedMax"
2786 <instance template="tgcw_scrollbarfloat"
2788 text="uiKeybCamSpeedMin"
2789 posparent="speedmax"
2794 <ctrl style="skin_scroll"
2810 child_resize_h="true"
2811 child_resize_hmargin="4"
2813 max_sizeparent="crop"
2816 <view style="sgc_title"
2822 hardtext="uiVRGeneral" />
2827 child_resize_w="true"
2831 button_type="toggle_button"
2835 tx_normal="w_slot_on.tga"
2836 tx_pushed="w_opacity_on.tga"
2837 tx_over="w_slot_on.tga"
2838 color="255 255 255 255"
2839 col_pushed="255 255 255 255"
2840 col_over="255 255 255 0"
2841 onclick_l="game_config_change_vr_enable"
2849 color="255 255 255 192"
2852 hardtext="uiVREnable" />
2854 <group type="combo_box"
2860 value="UI:TEMP:VR_DEVICE"
2865 <instance template="combo_box_def1" />
2867 <link expr="@UI:TEMP:VR_DEVICE"
2868 action="game_config_change_vr_device" />
2870 <ctrl style="skin_scroll"
2886 child_resize_h="true"
2887 child_resize_hmargin="4"
2889 max_sizeparent="crop"
2892 <view style="sgc_title"
2898 hardtext="uiSoundGeneral" />
2899 <instance template="tgcw_checkbox"
2905 <instance template="tgcw_checkbox"
2912 <instance template="tgcw_checkbox"
2919 <view style="sgc_title2"
2922 posparent="forcesoftbuf"
2926 hardtext="uiSoundPerf" />
2927 <instance template="tgcw_scrollbarint"
2934 <view style="sgc_title2"
2937 posparent="maxtrack"
2941 hardtext="uiSoundVolume" />
2942 <instance template="tgcw_scrollbarfloat"
2944 text="uiSoundSFXVolume"
2949 <instance template="tgcw_scrollbarfloat"
2951 text="uiSoundGameMusicVolume"
2952 posparent="sfx_volume"
2957 <ctrl style="skin_scroll"
2966 <group id="landmark_colors"
2973 child_resize_h="true"
2974 child_resize_hmargin="4"
2976 max_sizeparent="crop"
2979 <!-- Landmark colors -->
2980 <view style="sgc_title"
2985 hardtext="uiLandmarkColors" />
2986 <instance template="tgcw_color"
2988 text="uiLMMiscColor"
2990 tooltip="uittChooseLMMiscColor"
2994 <instance template="tgcw_color" id="cc_tribe" text="uiLMTribeColor" title="uiCCDLMTribe" tooltip="uittChooseLMTribeColor" posref="BL TL" posparent="cc_misc" x="0" y="-16" />
2995 <instance template="tgcw_color" id="cc_bandit" text="uiLMBanditColor" title="uiCCDLMBandit" tooltip="uittChooseLMBanditColor" posref="BL TL" posparent="cc_tribe" x="0" y="-4" />
2996 <instance template="tgcw_color" id="cc_citizen" text="uiLMCitizenColor" title="uiCCDLMCitizen" tooltip="uittChooseLMCitizenColor" posref="BL TL" posparent="cc_bandit" x="0" y="-4" />
2997 <instance template="tgcw_color" id="cc_fauna" text="uiLMFaunaColor" title="uiCCDLMFauna" tooltip="uittChooseLMFaunaColor" posref="BL TL" posparent="cc_citizen" x="0" y="-16" />
2998 <instance template="tgcw_color" id="cc_faunaexcel" text="uiLMFaunaExcelColor" title="uiCCDLMFaunaExcel" tooltip="uittChooseLMFaunaExcelColor" posref="BL TL" posparent="cc_fauna" x="0" y="-4" />
2999 <instance template="tgcw_color" id="cc_faunasup" text="uiLMFaunaSupColor" title="uiCCDLMFaunaSup" tooltip="uittChooseLMFaunaSupColor" posref="BL TL" posparent="cc_faunaexcel" x="0" y="-4" />
3000 <instance template="tgcw_color" id="cc_forage" text="uiLMForageColor" title="uiCCDLMForage" tooltip="uittChooseLMForageColor" posref="BL TL" posparent="cc_faunasup" x="0" y="-16" />
3001 <instance template="tgcw_color" id="cc_forageexcel" text="uiLMForageExcelColor" title="uiCCDLMForageExcel" tooltip="uittChooseLMForageExcelColor" posref="BL TL" posparent="cc_forage" x="0" y="-4" />
3002 <instance template="tgcw_color" id="cc_foragesup" text="uiLMForageSupColor" title="uiCCDLMForageSup" tooltip="uittChooseLMForageSupColor" posref="BL TL" posparent="cc_forageexcel" x="0" y="-4" />
3003 <instance template="tgcw_color" id="cc_sap" text="uiLMSapColor" title="uiCCDLMSap" tooltip="uittChooseLMSapColor" posref="BL TL" posparent="cc_foragesup" x="16" y="-4" />
3004 <instance template="tgcw_color" id="cc_amber" text="uiLMAmberColor" title="uiCCDLMAmber" tooltip="uittChooseLMAmberColor" posref="BL TL" posparent="cc_sap" x="0" y="-4" />
3005 <instance template="tgcw_color" id="cc_node" text="uiLMNodeColor" title="uiCCDLMNode" tooltip="uittChooseLMNodeColor" posref="BL TL" posparent="cc_amber" x="0" y="-4" />
3006 <instance template="tgcw_color" id="cc_fiber" text="uiLMFiberColor" title="uiCCDLMFiber" tooltip="uittChooseLMFiberColor" posref="BL TL" posparent="cc_node" x="0" y="-4" />
3007 <instance template="tgcw_color" id="cc_bark" text="uiLMBarkColor" title="uiCCDLMBark" tooltip="uittChooseLMBarkColor" posref="BL TL" posparent="cc_fiber" x="0" y="-4" />
3008 <instance template="tgcw_color" id="cc_seed" text="uiLMSeedColor" title="uiCCDLMSeed" tooltip="uittChooseLMSeedColor" posref="BL TL" posparent="cc_bark" x="0" y="-4" />
3009 <instance template="tgcw_color" id="cc_shell" text="uiLMShellColor" title="uiCCDLMShell" tooltip="uittChooseLMShellColor" posref="BL TL" posparent="cc_seed" x="0" y="-4" />
3010 <instance template="tgcw_color" id="cc_resin" text="uiLMResinColor" title="uiCCDLMResin" tooltip="uittChooseLMResinColor" posref="BL TL" posparent="cc_shell" x="0" y="-4" />
3011 <instance template="tgcw_color" id="cc_wood" text="uiLMWoodColor" title="uiCCDLMWood" tooltip="uittChooseLMWoodColor" posref="BL TL" posparent="cc_resin" x="0" y="-4" />
3012 <instance template="tgcw_color" id="cc_oil" text="uiLMOilColor" title="uiCCDLMOil" tooltip="uittChooseLMOilColor" posref="BL TL" posparent="cc_wood" x="0" y="-4" />
3013 <instance template="tgcw_color" id="cc_mission" text="uiLMMissionColor" title="uiCCDLMMission" tooltip="uittChooseLMMissionColor" posref="BL TL" posparent="cc_oil" x="-16" y="-16" />
3014 <instance template="tgcw_color" id="cc_food" text="uiLMFoodColor" title="uiCCDLMFood" tooltip="uittChooseLMFoodColor" posref="BL TL" posparent="cc_mission" x="16" y="-4" />
3015 <instance template="tgcw_color" id="cc_construction" text="uiLMConstructionColor" title="uiCCDLMConstruction" tooltip="uittChooseLMConstructionColor" posref="BL TL" posparent="cc_food" x="0" y="-4" />
3016 <instance template="tgcw_color" id="cc_goo" text="uiLMGooColor" title="uiCCDLMGoo" tooltip="uittChooseLMGooColor" posref="BL TL" posparent="cc_construction" x="0" y="-4" />
3017 <instance template="tgcw_color" id="cc_insect" text="uiLMInsectColor" title="uiCCDLMInsect" tooltip="uittChooseLMInsectColor" posref="BL TL" posparent="cc_goo" x="0" y="-4" />
3018 <instance template="tgcw_color" id="cc_kitin" text="uiLMKitinColor" title="uiCCDLMKitin" tooltip="uittChooseLMKitinColor" posref="BL TL" posparent="cc_insect" x="0" y="-4" />
3019 <instance template="tgcw_color" id="cc_nocive" text="uiLMNociveColor" title="uiCCDLMNocive" tooltip="uittChooseLMNociveColor" posref="BL TL" posparent="cc_kitin" x="0" y="-4" />
3020 <instance template="tgcw_color" id="cc_preservative" text="uiLMPreservativeColor" title="uiCCDLMPreservative" tooltip="uittChooseLMPreservativeColor" posref="BL TL" posparent="cc_nocive" x="0" y="-4" />
3021 <instance template="tgcw_color" id="cc_passage" text="uiLMPassageColor" title="uiCCDLMPassage" tooltip="uittChooseLMPassageColor" posref="BL TL" posparent="cc_preservative" x="-16" y="-16" />
3022 <instance template="tgcw_color" id="cc_teleporter" text="uiLMTeleporterColor" title="uiCCDLMTeleporter" tooltip="uittChooseLMTeleporterColor" posref="BL TL" posparent="cc_passage" x="0" y="-4" />
3025 <ctrl style="skin_scroll"
3026 id="sb_landmark_colors"
3028 target="landmark_colors"
3041 child_resize_h="true"
3042 child_resize_hmargin="4"
3044 max_sizeparent="crop"
3047 <!-- Entities Names -->
3048 <view style="sgc_title"
3054 hardtext="uiHelp" />
3055 <instance template="tgcw_checkbox"
3057 text="uiShowContextHelp"
3062 <ctrl style="skin_scroll"
3073 <!-- This ref to the apply button -->
3074 <apply ui="apply" />
3075 <param ui="general:con:c"
3080 <param ui="general:lum:c"
3084 link="Luminosity" />
3085 <param ui="general:gam:c"
3090 <param ui="general:waitvbl:c"
3095 <param ui="landscape:lvi:c"
3097 widget="sbfloat_round"
3098 realtime="end_scroll"
3099 ui_view="landscape:lvi:c_res"
3100 ui_unit="uigcUnitMeters"
3102 preset="UI:TEMP:PRESET_LAND" />
3103 <param ui="landscape:ltn:c"
3105 widget="sbfloat_round"
3107 ui_view="landscape:ltn:c_res"
3108 ui_unit="uigcUnitMeters"
3109 link="LandscapeTileNear"
3110 preset="UI:TEMP:PRESET_LAND" />
3111 <param ui="landscape:lth:c"
3115 ui_view="landscape:lth:c_res"
3117 link="LandscapeThreshold"
3118 preset="UI:TEMP:PRESET_LAND" />
3119 <param ui="landscape:lmv:c"
3124 preset="UI:TEMP:PRESET_LAND" />
3125 <param ui="landscape:mvd:c"
3127 widget="sbfloat_round"
3128 realtime="end_scroll"
3129 ui_view="landscape:mvd:c_res"
3130 ui_unit="uigcUnitPercent"
3131 link="MicroVegetDensity"
3132 preset="UI:TEMP:PRESET_LAND" />
3133 <param ui="char:maxpoly:c"
3137 ui_view="char:maxpoly:c_res"
3138 link="SkinNbMaxPoly"
3139 preset="UI:TEMP:PRESET_CHAR" />
3140 <param ui="char:maxnotclod:c"
3144 ui_view="char:maxnotclod:c_res"
3145 ui_unit="uigcUnitChar"
3146 link="NbMaxSkeletonNotCLod"
3147 preset="UI:TEMP:PRESET_CHAR" />
3148 <param ui="char:farclip:c"
3150 widget="sbfloat_round"
3152 ui_view="char:farclip:c_res"
3153 ui_unit="uigcUnitMeters"
3154 link="CharacterFarClip"
3155 preset="UI:TEMP:PRESET_CHAR" />
3156 <param ui="char:race_anim:c"
3160 link="EnableRacialAnimation" />
3161 <param ui="fx:maxpoly:c"
3165 ui_view="fx:maxpoly:c_res"
3167 preset="UI:TEMP:PRESET_FX" />
3168 <param ui="fx:cloud:c"
3173 preset="UI:TEMP:PRESET_FX" />
3174 <param ui="fx:cqual:c"
3176 widget="sbfloat_round"
3178 ui_view="fx:cqual:c_res"
3180 preset="UI:TEMP:PRESET_FX" />
3181 <param ui="fx:cup:c"
3185 ui_view="fx:cup:c_res"
3187 preset="UI:TEMP:PRESET_FX" />
3188 <param ui="fx:shadow:c"
3193 preset="UI:TEMP:PRESET_FX" />
3194 <param ui="fx:fxaa:c"
3199 preset="UI:TEMP:PRESET_FX" />
3200 <param ui="fx:anisotropic_gr:anisotropic:c"
3204 link="UI:TEMP:ANISOTROPIC" />
3205 <param ui="fx:bloom_gr:bloom:c"
3210 preset="UI:TEMP:PRESET_FX" />
3211 <param ui="fx:bloom_gr:square_bloom:c"
3216 preset="UI:TEMP:PRESET_FX" />
3217 <param ui="fx:bloom_gr:density_bloom:c"
3219 widget="sbfloat_round"
3221 ui_view="fx:bloom_gr:density_bloom:c_res"
3223 preset="UI:TEMP:PRESET_FX" />
3225 <param ui="hud:suc:c" type="cfg" widget="boolbut" link="ShowNameUnderCursor" realtime="true"/>
3226 <param ui="hud:sta:c" type="cfg" widget="boolbut" link="ShowNameSelected" realtime="true"/>
3228 <param ui="hud:swrc:c"
3231 link="SelectWithRClick"
3233 <param ui="hud:foa:c"
3238 <param ui="hud:aos:c"
3243 <param ui="hud:aet:c"
3246 link="AutoEquipTool"
3248 <param ui="hud:auc:c"
3251 link="AutomaticCamera"
3253 <param ui="hud:fade:c"
3256 link="UI:SAVE:USER_CHAR_FADE"
3258 <param ui="hud:opamin:c"
3261 link="UI:SAVE:USER_CHAR_OPA_MIN"
3265 <param ui="hud:cao:c"
3268 link="UI:SAVE:ACT_BAR_OUT"
3270 <param ui="hud:show_clock:c"
3273 link="UI:SAVE:SHOW_CLOCK"
3275 <param ui="hud:show_clock_12h:c"
3278 link="UI:SAVE:SHOW_CLOCK_12H"
3280 <param ui="hud:show_reticle:c"
3283 link="UI:SAVE:SHOW_RETICLE"
3285 <param ui="hud:radar_use_camera:c"
3288 link="UI:SAVE:RADAR:USE_CAMERA"
3290 <param ui="alpha_colors:col_day:c"
3293 link="UI:SAVE:DAY_COLOR"
3295 <param ui="alpha_colors:col_night:c"
3298 link="UI:SAVE:NIGHT_COLOR"
3300 <param ui="alpha_colors:ga_win:c"
3303 link="UI:SAVE:CONTAINER_ALPHA"
3307 <param ui="alpha_colors:ga_con:c"
3310 link="UI:SAVE:CONTENT_ALPHA"
3314 <param ui="alpha_colors:moa_win:c"
3317 link="UI:SAVE:CONTAINER_ROLLOVER_FACTOR"
3321 <param ui="alpha_colors:moa_con:c"
3324 link="UI:SAVE:CONTENT_ROLLOVER_FACTOR"
3328 <param ui="alpha_colors:moa_speed:c"
3331 link="UI:SAVE:ALPHA_ROLLOVER_SPEED"
3335 <param ui="alpha_colors:show_3d_item_preview:c"
3338 link="UI:SAVE:SHOW_3D_ITEM_PREVIEW"
3340 <param ui="chat_colors:cc_say:c"
3343 link="UI:SAVE:CHAT:COLORS:SAY"
3345 <param ui="chat_colors:cc_tell:c"
3348 link="UI:SAVE:CHAT:COLORS:TELL"
3350 <param ui="chat_colors:cc_team:c"
3353 link="UI:SAVE:CHAT:COLORS:GROUP"
3355 <param ui="chat_colors:cc_guild:c"
3358 link="UI:SAVE:CHAT:COLORS:CLADE"
3360 <param ui="chat_colors:cc_region:c"
3363 link="UI:SAVE:CHAT:COLORS:REGION"
3365 <param ui="chat_colors:cc_univ:c"
3368 link="UI:SAVE:CHAT:COLORS:UNIVERSE_NEW"
3370 <param ui="chat_colors:cc_shout:c"
3373 link="UI:SAVE:CHAT:COLORS:SHOUT"
3375 <param ui="chat_colors:cc_dyn0:c"
3378 link="UI:SAVE:CHAT:COLORS:DYN:0"
3380 <param ui="chat_colors:cc_dyn1:c"
3383 link="UI:SAVE:CHAT:COLORS:DYN:1"
3385 <param ui="chat_colors:cc_dyn2:c"
3388 link="UI:SAVE:CHAT:COLORS:DYN:2"
3390 <param ui="chat_colors:cc_dyn3:c"
3393 link="UI:SAVE:CHAT:COLORS:DYN:3"
3395 <param ui="chat_colors:cc_dyn4:c"
3398 link="UI:SAVE:CHAT:COLORS:DYN:4"
3400 <param ui="chat_colors:cc_dyn5:c"
3403 link="UI:SAVE:CHAT:COLORS:DYN:5"
3405 <param ui="chat_colors:cc_dyn6:c"
3408 link="UI:SAVE:CHAT:COLORS:DYN:6"
3410 <param ui="chat_colors:cc_dyn7:c"
3413 link="UI:SAVE:CHAT:COLORS:DYN:7"
3416 <param ui="chat_colors:cc_shout:c" type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:SHOUT" realtime="true" />
3417 <param ui="chat_colors:cc_civi:c" type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:CIVILIZATION" realtime="true" />
3418 <param ui="chat_colors:cc_terri:c" type="db" widget="colbut" link="UI:SAVE:CHAT:COLORS:TERRITORY" realtime="true" />
3420 <param ui="chat_colors:enter_dontquit_cb:c"
3423 link="UI:SAVE:CHAT:ENTER_DONT_QUIT_CB"
3425 <param ui="chat_colors:show_times_in_chat_cb:c"
3428 link="UI:SAVE:CHAT:SHOW_TIMES_IN_CHAT_CB"
3430 <param ui="chat_colors:show_dyn_channel_name_in_chat_cb:c"
3433 link="UI:SAVE:CHAT:SHOW_DYN_CHANNEL_NAME_IN_CHAT_CB"
3435 <param ui="chat_colors:show_online_offline_notifications_cb:c"
3438 link="UI:SAVE:CHAT:SHOW_ONLINE_OFFLINE_NOTIFICATIONS_CB"
3440 <param ui="chat_colors:font_size:c"
3443 link="UI:SAVE:CHAT:FONT_SIZE"
3447 <param ui="entity_colors:cc_user:c"
3450 link="UI:SAVE:ENTITY:COLORS:USER"
3452 <param ui="entity_colors:cc_player:c"
3455 link="UI:SAVE:ENTITY:COLORS:PLAYER"
3457 <param ui="entity_colors:cc_npc:c"
3460 link="UI:SAVE:ENTITY:COLORS:NPC"
3462 <param ui="entity_colors:cc_fauna:c"
3465 link="UI:SAVE:ENTITY:COLORS:FAUNA"
3467 <param ui="entity_colors:cc_target:c"
3470 link="UI:SAVE:ENTITY:COLORS:TARGET"
3472 <param ui="entity_colors:cc_group:c"
3475 link="UI:SAVE:ENTITY:COLORS:GROUP"
3477 <param ui="entity_colors:cc_guild:c"
3480 link="UI:SAVE:ENTITY:COLORS:GUILD"
3482 <param ui="entity_colors:cc_mount:c"
3485 link="UI:SAVE:ENTITY:COLORS:MOUNT"
3487 <param ui="entity_colors:cc_beast:c"
3490 link="UI:SAVE:ENTITY:COLORS:BEAST"
3492 <param ui="entity_colors:cc_source:c"
3495 link="UI:SAVE:ENTITY:COLORS:SOURCE"
3497 <param ui="entity_colors:cc_dead:c"
3500 link="UI:SAVE:ENTITY:COLORS:DEAD"
3502 <param ui="entity_colors:cc_pvpenemy:c"
3505 link="UI:SAVE:ENTITY:COLORS:PVPENEMY"
3507 <param ui="entity_colors:cc_pvpally:c"
3510 link="UI:SAVE:ENTITY:COLORS:PVPALLY"
3512 <param ui="entity_colors:cc_pvpneutral:c"
3515 link="UI:SAVE:ENTITY:COLORS:PVPNEUTRAL"
3517 <param ui="entity_colors:cc_pvpallyinteam:c"
3520 link="UI:SAVE:ENTITY:COLORS:PVPALLYINTEAM"
3522 <param ui="entity_colors:cc_pvpallyinguild:c"
3525 link="UI:SAVE:ENTITY:COLORS:PVPALLYINGUILD"
3527 <param ui="in_scene_user:is_user_guild_symbol:c"
3530 link="UI:SAVE:INSCENE:USER:GUILD_SYMBOL"
3532 <param ui="in_scene_user:is_user_name:c"
3535 link="UI:SAVE:INSCENE:USER:NAME"
3537 <param ui="in_scene_user:is_user_title:c"
3540 link="UI:SAVE:INSCENE:USER:TITLE"
3542 <param ui="in_scene_user:is_user_rptags:c"
3545 link="UI:SAVE:INSCENE:USER:RPTAGS"
3547 <param ui="in_scene_user:is_user_guild_name:c"
3550 link="UI:SAVE:INSCENE:USER:GUILD_NAME"
3552 <param ui="in_scene_user:is_user_hp:c"
3555 link="UI:SAVE:INSCENE:USER:HP"
3557 <param ui="in_scene_user:is_user_sap:c"
3560 link="UI:SAVE:INSCENE:USER:SAP"
3562 <param ui="in_scene_user:is_user_sta:c"
3565 link="UI:SAVE:INSCENE:USER:STA"
3567 <param ui="in_scene_user:is_user_focus:c"
3570 link="UI:SAVE:INSCENE:USER:FOCUS"
3572 <param ui="in_scene_user:is_user_action:c"
3575 link="UI:SAVE:INSCENE:USER:ACTION"
3577 <param ui="in_scene_user:is_user_pvp_logo:c"
3580 link="UI:SAVE:INSCENE:USER:PVP_LOGO"
3582 <param ui="in_scene_friend:is_friend_guild_symbol:c"
3585 link="UI:SAVE:INSCENE:FRIEND:GUILD_SYMBOL"
3587 <param ui="in_scene_friend:is_friend_name:c"
3590 link="UI:SAVE:INSCENE:FRIEND:NAME"
3592 <param ui="in_scene_friend:is_friend_title:c"
3595 link="UI:SAVE:INSCENE:FRIEND:TITLE"
3597 <param ui="in_scene_friend:is_friend_rptags:c"
3600 link="UI:SAVE:INSCENE:FRIEND:RPTAGS"
3602 <param ui="in_scene_friend:is_friend_guild_name:c"
3605 link="UI:SAVE:INSCENE:FRIEND:GUILD_NAME"
3607 <param ui="in_scene_friend:is_friend_hp:c"
3610 link="UI:SAVE:INSCENE:FRIEND:HP"
3612 <param ui="in_scene_friend:is_friend_sap:c"
3615 link="UI:SAVE:INSCENE:FRIEND:SAP"
3617 <param ui="in_scene_friend:is_friend_sta:c"
3620 link="UI:SAVE:INSCENE:FRIEND:STA"
3622 <param ui="in_scene_friend:is_friend_focus:c"
3625 link="UI:SAVE:INSCENE:FRIEND:FOCUS"
3627 <param ui="in_scene_friend:is_friend_pvp_logo:c"
3630 link="UI:SAVE:INSCENE:FRIEND:PVP_LOGO"
3632 <param ui="in_scene_friend:is_friend_npcname:c"
3635 link="UI:SAVE:INSCENE:FRIEND:NPCNAME"
3637 <param ui="in_scene_friend:is_friend_npctitle:c"
3640 link="UI:SAVE:INSCENE:FRIEND:NPCTITLE"
3642 <param ui="in_scene_friend:is_friend_mission_icon:c"
3645 link="UI:SAVE:INSCENE:FRIEND:MISSION_ICON"
3647 <param ui="in_scene_friend:is_friend_mission_mini_icon:c"
3650 link="UI:SAVE:INSCENE:FRIEND:MINI_MISSION_ICON"
3652 <param ui="in_scene_enemy:is_enemy_guild_symbol:c"
3655 link="UI:SAVE:INSCENE:ENEMY:GUILD_SYMBOL"
3657 <param ui="in_scene_enemy:is_enemy_name:c"
3660 link="UI:SAVE:INSCENE:ENEMY:NAME"
3662 <param ui="in_scene_enemy:is_enemy_title:c"
3665 link="UI:SAVE:INSCENE:ENEMY:TITLE"
3667 <param ui="in_scene_enemy:is_enemy_rptags:c"
3670 link="UI:SAVE:INSCENE:ENEMY:RPTAGS"
3672 <param ui="in_scene_enemy:is_enemy_guild_name:c"
3675 link="UI:SAVE:INSCENE:ENEMY:GUILD_NAME"
3677 <param ui="in_scene_enemy:is_enemy_hp:c"
3680 link="UI:SAVE:INSCENE:ENEMY:HP"
3682 <param ui="in_scene_enemy:is_ennemy_pvp_logo:c"
3685 link="UI:SAVE:INSCENE:ENEMY:PVP_LOGO"
3687 <param ui="in_scene_chat_messages:is_user_messages:c"
3690 link="UI:SAVE:INSCENE:USER:MESSAGES"
3692 <param ui="in_scene_chat_messages:is_friend_messages:c"
3695 link="UI:SAVE:INSCENE:FRIEND:MESSAGES"
3697 <param ui="in_scene_chat_messages:is_enemy_messages:c"
3700 link="UI:SAVE:INSCENE:ENEMY:MESSAGES"
3702 <param ui="win_colors:wc_pla:c"
3705 link="UI:SAVE:WIN:COLORS:PLA"
3707 <param ui="win_colors:wc_ani:c"
3710 link="UI:SAVE:WIN:COLORS:ANI"
3712 <param ui="win_colors:wc_com:c"
3715 link="UI:SAVE:WIN:COLORS:COM"
3717 <param ui="win_colors:wc_inv:c"
3720 link="UI:SAVE:WIN:COLORS:INV"
3722 <param ui="win_colors:wc_opt:c"
3725 link="UI:SAVE:WIN:COLORS:OPT"
3727 <param ui="win_colors:wc_lab:c"
3730 link="UI:SAVE:WIN:COLORS:LAB"
3732 <param ui="win_colors:wc_mem:c"
3735 link="UI:SAVE:WIN:COLORS:MEM"
3737 <param ui="win_colors:wc_help:c"
3740 link="UI:SAVE:WIN:COLORS:HELP"
3742 <param ui="win_colors:wc_infos:c"
3745 link="UI:SAVE:WIN:COLORS:INFOS"
3747 <param ui="win_colors:wc_trade:c"
3750 link="UI:SAVE:WIN:COLORS:TRADE"
3752 <param ui="win_colors:wc_bot:c"
3755 link="UI:SAVE:WIN:COLORS:BOT"
3757 <param ui="win_colors_r2:wc_r2_palette:c"
3760 link="UI:SAVE:WIN:COLORS:R2_PALETTE"
3762 <param ui="win_colors_r2:wc_r2_scenario:c"
3765 link="UI:SAVE:WIN:COLORS:R2_SCENARIO"
3767 <param ui="win_colors_r2:wc_r2_prop_window:c"
3770 link="UI:SAVE:WIN:COLORS:R2_PROP_WINDOW"
3772 <param ui="win_colors_r2:wc_r2_form:c"
3775 link="UI:SAVE:WIN:COLORS:R2_FORM"
3777 <param ui="win_colors_r2:wc_r2_custom_look:c"
3780 link="UI:SAVE:WIN:COLORS:R2_CUSTOM_LOOK"
3782 <param ui="win_colors_r2:wc_r2_dialogs:c"
3785 link="UI:SAVE:WIN:COLORS:R2_DIALOGS"
3787 <param ui="win_colors_r2:wc_r2_events:c"
3790 link="UI:SAVE:WIN:COLORS:R2_EVENTS"
3792 <param ui="win_colors_r2:wc_r2_activities:c"
3795 link="UI:SAVE:WIN:COLORS:R2_ACTIVITIES"
3797 <param ui="win_colors_r2:wc_r2_feature_help:c"
3800 link="UI:SAVE:WIN:COLORS:R2_FEATURE_HELP"
3802 <param ui="win_colors_r2:wc_r2_connect:c"
3805 link="UI:SAVE:WIN:COLORS:R2_CONNECT"
3807 <param ui="win_colors_r2:wc_r2_session_browser:c"
3810 link="UI:SAVE:WIN:COLORS:R2_SESSION_BROWSER"
3812 <param ui="win_colors_r2:wc_r2_scenario_control:c"
3815 link="UI:SAVE:WIN:COLORS:R2_SCENARIO_CONTROL"
3817 <param ui="win_colors_r2:wc_r2_player_tracking:c"
3820 link="UI:SAVE:WIN:COLORS:R2_PLAYER_TRACKING"
3822 <param ui="mouse:hard:c"
3825 link="HardwareCursor"
3827 <param ui="mouse:inverted:c"
3830 link="FreeLookInverted"
3832 <param ui="mouse:dbl:c"
3837 <param ui="mouse:dcspeed:c"
3840 link="UI:SAVE:DOUBLE_CLICK_SPEED"
3844 <param ui="mouse:curspeed:c"
3849 <param ui="mouse:curaccel:c"
3852 link="CursorAcceleration"
3854 <param ui="mouse:headspeed:c"
3857 link="FreeLookSpeed"
3859 <param ui="mouse:headaccel:c"
3862 link="FreeLookAcceleration"
3864 <param ui="keyb:speedmax:c"
3867 link="RotKeySpeedMax"
3869 <param ui="keyb:speedmin:c"
3872 link="RotKeySpeedMin"
3874 <param ui="sound:enabler:c"
3879 <param ui="sound:useeax:c"
3884 <param ui="sound:forcesoftbuf:c"
3887 link="SoundForceSoftwareBuffer"
3889 <param ui="sound:maxtrack:c"
3893 realtime="end_scroll"
3894 ui_view="sound:maxtrack:c_res" />
3895 <param ui="sound:sfx_volume:c"
3898 link="SoundSFXVolume"
3900 <param ui="sound:music_volume:c"
3903 link="SoundGameMusicVolume"
3905 <param ui="landmark_colors:cc_misc:c"
3908 link="UI:SAVE:LANDMARK:COLORS:MISC"
3910 <param ui="landmark_colors:cc_tribe:c"
3913 link="UI:SAVE:LANDMARK:COLORS:TRIBE"
3915 <param ui="landmark_colors:cc_bandit:c"
3918 link="UI:SAVE:LANDMARK:COLORS:BANDIT"
3920 <param ui="landmark_colors:cc_citizen:c"
3923 link="UI:SAVE:LANDMARK:COLORS:CITIZEN"
3925 <param ui="landmark_colors:cc_fauna:c"
3928 link="UI:SAVE:LANDMARK:COLORS:FAUNA"
3930 <param ui="landmark_colors:cc_faunaexcel:c"
3933 link="UI:SAVE:LANDMARK:COLORS:FAUNAEXCEL"
3935 <param ui="landmark_colors:cc_faunasup:c"
3938 link="UI:SAVE:LANDMARK:COLORS:FAUNASUP"
3940 <param ui="landmark_colors:cc_forage:c"
3943 link="UI:SAVE:LANDMARK:COLORS:FORAGE"
3945 <param ui="landmark_colors:cc_forageexcel:c"
3948 link="UI:SAVE:LANDMARK:COLORS:FORAGEEXCEL"
3950 <param ui="landmark_colors:cc_foragesup:c"
3953 link="UI:SAVE:LANDMARK:COLORS:FORAGESUP"
3955 <param ui="landmark_colors:cc_sap:c"
3958 link="UI:SAVE:LANDMARK:COLORS:SAP"
3960 <param ui="landmark_colors:cc_amber:c"
3963 link="UI:SAVE:LANDMARK:COLORS:AMBER"
3965 <param ui="landmark_colors:cc_node:c"
3968 link="UI:SAVE:LANDMARK:COLORS:NODE"
3970 <param ui="landmark_colors:cc_fiber:c"
3973 link="UI:SAVE:LANDMARK:COLORS:FIBER"
3975 <param ui="landmark_colors:cc_bark:c"
3978 link="UI:SAVE:LANDMARK:COLORS:BARK"
3980 <param ui="landmark_colors:cc_seed:c"
3983 link="UI:SAVE:LANDMARK:COLORS:SEED"
3985 <param ui="landmark_colors:cc_shell:c"
3988 link="UI:SAVE:LANDMARK:COLORS:SHELL"
3990 <param ui="landmark_colors:cc_resin:c"
3993 link="UI:SAVE:LANDMARK:COLORS:RESIN"
3995 <param ui="landmark_colors:cc_wood:c"
3998 link="UI:SAVE:LANDMARK:COLORS:WOOD"
4000 <param ui="landmark_colors:cc_oil:c"
4003 link="UI:SAVE:LANDMARK:COLORS:OIL"
4005 <param ui="landmark_colors:cc_mission:c"
4008 link="UI:SAVE:LANDMARK:COLORS:MISSION"
4010 <param ui="landmark_colors:cc_food:c"
4013 link="UI:SAVE:LANDMARK:COLORS:FOOD"
4015 <param ui="landmark_colors:cc_construction:c"
4018 link="UI:SAVE:LANDMARK:COLORS:CONSTRUCTION"
4020 <param ui="landmark_colors:cc_goo:c"
4023 link="UI:SAVE:LANDMARK:COLORS:GOO"
4025 <param ui="landmark_colors:cc_insect:c"
4028 link="UI:SAVE:LANDMARK:COLORS:INSECT"
4030 <param ui="landmark_colors:cc_kitin:c"
4033 link="UI:SAVE:LANDMARK:COLORS:KITIN"
4035 <param ui="landmark_colors:cc_nocive:c"
4038 link="UI:SAVE:LANDMARK:COLORS:NOCIVE"
4040 <param ui="landmark_colors:cc_preservative:c"
4043 link="UI:SAVE:LANDMARK:COLORS:PRESERVATIVE"
4045 <param ui="landmark_colors:cc_passage:c"
4048 link="UI:SAVE:LANDMARK:COLORS:PASSAGE"
4050 <param ui="landmark_colors:cc_teleporter:c"
4053 link="UI:SAVE:LANDMARK:COLORS:TELEPORTER"
4056 <param ui="help:context_help:c"
4059 link="UI:SAVE:ENTITY:CONTEXT_HELP"
4064 <tree node="game_config" />
4065 <link expr="depends(@UI:SAVE:CONTENT_ALPHA)"
4067 params="dblink=UI:SAVE:CONTAINER_ALPHA|value=min(@UI:SAVE:CONTENT_ALPHA, @UI:SAVE:CONTAINER_ALPHA)" />
4068 <link expr="depends(@UI:SAVE:CONTAINER_ALPHA)"
4070 params="dblink=UI:SAVE:CONTENT_ALPHA|value=max(@UI:SAVE:CONTENT_ALPHA, @UI:SAVE:CONTAINER_ALPHA)" />
4071 <link expr="depends(@UI:SAVE:CONTENT_ROLLOVER_FACTOR)"
4073 params="dblink=UI:SAVE:CONTAINER_ROLLOVER_FACTOR|value=min(@UI:SAVE:CONTENT_ROLLOVER_FACTOR, @UI:SAVE:CONTAINER_ROLLOVER_FACTOR)" />
4074 <link expr="depends(@UI:SAVE:CONTAINER_ROLLOVER_FACTOR)"
4076 params="dblink=UI:SAVE:CONTENT_ROLLOVER_FACTOR|value=max(@UI:SAVE:CONTENT_ROLLOVER_FACTOR, @UI:SAVE:CONTAINER_ROLLOVER_FACTOR)" />