Does anyone know how to change the selection for hair and faces in char selection?
Does anyone know how to change the selection for hair and faces in char selection?
this is not a release >.<
interface->default.mrs->CharCreation.xml
you can add hair type 5 there, but it's only a new hair style for women
From what I remember they are hard coded into Gunz. You either have to edit the current ones or mess with the runnable.
in default.mrs/charcreation.xml you will find
add <LISTITEM>STR:UI_CC_LIST_02_05</LISTITEM> <!-- 타입5 --><COMBOBOX item="CC_Hair" parent="CharCreation">
<LISTBOXLOOK>CustomListBoxLook</LISTBOXLOOK>
<BUTTONLOOK>ListBoxButtonLook</BUTTONLOOK>
<BOUNDS>
<X>80</X>
<Y>104</Y>
<W>153</W>
<H>24</H>
</BOUNDS>
<TEXTALIGN>
<HALIGN>center</HALIGN>
<VALIGN>center</VALIGN>
</TEXTALIGN>
<ITEMHEIGHT>18</ITEMHEIGHT>
<LISTITEM selected="true">STR:UI_CC_LIST_02_01</LISTITEM> <!-- 타입1 -->
<LISTITEM>STR:UI_CC_LIST_02_02</LISTITEM> <!-- 타입2 -->
<LISTITEM>STR:UI_CC_LIST_02_03</LISTITEM> <!-- 타입3 -->
<LISTITEM>STR:UI_CC_LIST_02_04</LISTITEM> <!-- 타입4 -->
<DROPSIZE>210</DROPSIZE>
</COMBOBOX>
under <LISTITEM>STR:UI_CC_LIST_02_04</LISTITEM> <!-- 타입4 -->
and add <STR id="UI_CC_LIST_02_05">Type5</STR>
in strings.xml in system.mrs
then you can choose type 5 hair in char creation ;)