Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Add extra faces (for noobies)

Status
Not open for further replies.
Joined
Jan 9, 2009
Messages
614
Reaction score
152
GunZ was originally going to have many more faces (faces 1-4, then newfaces1-15). faces 11, 12, and 13, are still present in man/woman.mrs, Im going to show you how to easily add them back to the game. (i assume this is the same method that fgunz used to add their extra faces, you probably just need to name your new face model, newface(0-10, then 14-15) and replace them in man/woman)

Step 1. Open MMatchObject (located in cscommon)

Go down to line 1141-1143, and, copy these 3 lines:


{"eq_face_newface11", "eq_face_newface11"},
{"eq_face_newface12", "eq_face_newface12"},
{"eq_face_newface12", "eq_face_newface13"},


Step 2.
Paste underneath {"eq_face_05", "eq_face_004"}, (line 1126)


Step 3. Go to line 1119 and increase MAX_COSTUME_FACE to 7.


Step 4. Built GunZ and Matchserver



Step 5. Xml edits

Decompile default.mrs, and search for charcreation.xml. Open charcreation.xml, and search for :

<LISTITEM>STR:UI_CC_LIST_02_04</LISTITEM> <!-- 타입4 -->

Under that, add these 3 lines:

<LISTITEM>Type 5</LISTITEM> <!-- 타입5 -->
<LISTITEM>Type 6</LISTITEM> <!-- 타입6 -->
<LISTITEM>Type 7</LISTITEM> <!-- 타입7 -->

Results:

195QtA6 - Add extra faces (for noobies) - RaGEZONE Forums


You can also do a similar method to add the 5th unused hair, but the unused male hair won't load in properly.
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 16, 2012
Messages
37
Reaction score
1
when i add these and build i immediately get an error xD

{"eq_face_newface11", "eq_face_newface11"},
{"eq_face_newface12", "eq_face_newface12"},
{"eq_face_newface12", "eq_face_newface13"},
 
Custom Title Activated
Loyal Member
Joined
Feb 18, 2012
Messages
1,433
Reaction score
391
GunZ was originally going to have many more faces (faces 1-4, then newfaces1-15). faces 11, 12, and 13, are still present in man/woman.mrs, Im going to show you how to easily add them back to the game. (i assume this is the same method that fgunz used to add their extra faces, you probably just need to name your new face model, newface(0-10, then 14-15) and replace them in man/woman)

Step 1. Open MMatchObject (located in cscommon)

Go down to line 1141-1143, and, copy these 3 lines:


{"eq_face_newface11", "eq_face_newface11"},
{"eq_face_newface12", "eq_face_newface12"},
{"eq_face_newface12", "eq_face_newface13"},


Step 2.
Paste underneath {"eq_face_05", "eq_face_004"}, (line 1126)


Step 3. Go to line 1119 and increase MAX_COSTUME_FACE to 7.


Step 4. Built GunZ and Matchserver



Step 5. Xml edits

Decompile default.mrs, and search for charcreation.xml. Open charcreation.xml, and search for :

<LISTITEM>STR:UI_CC_LIST_02_04</LISTITEM> <!-- 타입4 -->

Under that, add these 3 lines:

<LISTITEM>Type 5</LISTITEM> <!-- 타입5 -->
<LISTITEM>Type 6</LISTITEM> <!-- 타입6 -->
<LISTITEM>Type 7</LISTITEM> <!-- 타입7 -->

Results:

195QtA6 - Add extra faces (for noobies) - RaGEZONE Forums


You can also do a similar method to add the 5th unused hair, but the unused male hair won't load in properly.

You say this is for noobs but I can pull up the Skype chat of you not knowing how to do it... Just name it something without offending people less worthy of editing the source.

But thanks for the release as some people dont know how to do it.
 

Attachments

You must be registered for see attachments list
Joined
Jan 9, 2009
Messages
614
Reaction score
152
You say this is for noobs but I can pull up the Skype chat of you not knowing how to do it... Just name it something without offending people less worthy of editing the source.

But thanks for the release as some people dont know how to do it.

I had trouble with the 5th hair, not the faces :). Also, I wasn't trying to offend by using the term noobie, was just using it to describe either new/inexperienced source editors.
 
Last edited:
Status
Not open for further replies.
Back
Top