First of all, Copy and paste an existing code of a Set(from Zitem.xml), then make a new Set with the code. add it to the Following:
Put the ELU files of your Set in the Woman folder
EDIT "Woman01.xml" file inside Woman.mrs add your set parts, for example:
PHP Code:
<AddParts name="parts98" filename="woman-your_setname.elu"> </AddParts>
then open Zitem.xml
and copy your codes there for Example:
PHP Code:
<ITEM id="1000" name="GM Hat (Women)" mesh_name="HERE YOU NEED TO PUT THE MESH NAME YOU CAN FIND IT BY EITHER OPENING THE SET IN HEX EDIT OR BLENDER" totalpoint="0"
type="equip" res_sex="F" res_level="0" slot="head" weight="3" bt_price="0"
hp="-1" ap="13" maxwt="0" sf="0" fr="0" cr="0" pr="0" lr="0" color="#FFFFFFFF" desc="GM Set made by Touch." />
<ITEM id="1001" name="GM Chest (Women)" mesh_name="HERE YOU NEED TO PUT THE MESH NAME YOU CAN FIND IT BY EITHER OPENING THE SET IN HEX EDIT OR BLENDER" totalpoint="0" type="equip"
res_sex="f" res_level="0" slot="chest" weight="5" bt_price="0" hp="0" ap="5" maxwt="0"
sf="0" fr="0" cr="0" pr="0" lr="0" color="#FFFFFFFF" desc="GM Set made by Touch." />
<ITEM id="1002" name="GM Gloves (Women)" mesh_name="HERE YOU NEED TO PUT THE MESH NAME YOU CAN FIND IT BY EITHER OPENING THE SET IN HEX EDIT OR BLENDER" totalpoint="0" type="equip"
res_sex="f" res_level="0" slot="hands" weight="5" bt_price="0" hp="0" ap="5" maxwt="0"
sf="0" fr="0" cr="0" pr="0" lr="0" color="#FFFFFFFF" desc="GM Set made by Touch." />
<ITEM id="1003" name="GM Pants (Women)" mesh_name="HERE YOU NEED TO PUT THE MESH NAME YOU CAN FIND IT BY EITHER OPENING THE SET IN HEX EDIT OR BLENDER" totalpoint="0" type="equip"
res_sex="f" res_level="0" slot="legs" weight="10" bt_price="0" hp="0" ap="10" maxwt="0"
sf="0" fr="0" cr="0" pr="0" lr="0" color="#FFFFFFFF" desc="GM Set made by Touch." />
<ITEM id="1004" name="GM Shoes (Women)" mesh_name="HERE YOU NEED TO PUT THE MESH NAME YOU CAN FIND IT BY EITHER OPENING THE SET IN HEX EDIT OR BLENDER" totalpoint="0"
type="equip" res_sex="f" res_level="0" slot="feet" weight="5" bt_price="0" hp="0"
ap="5" maxwt="0" sf="0" fr="0" cr="0" pr="0" lr="0" color="#FFFFFFFF" desc="GM Set made by Touch." />
Now you need to Add codes to the Shop.xml(Located in MatchServer folder), Simply grab your ids from above and add them like this:
PHP Code:
<SELL itemid="1000"/> <!--GM Hat (Women)"-->
<SELL itemid="1001"/> <!--GM Chest (Women)"-->
<SELL itemid="1002"/> <!--GM Gloves (Women)"-->
<SELL itemid="1003"/> <!--GM Pants (Women)"-->
<SELL itemid="1001"/> <!--GM Shoes (Women)"-->
Make sure you add the same Zitem.xml to both your System.mrs and MatchServer folder.