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!

HairStyles and Eyes

Newbie Spellweaver
Joined
Apr 10, 2008
Messages
52
Reaction score
0
Well i was gonna make it so when u make a char u can have all the hairs and eyes right there...
so what u need to do is go to ur src folder and then
src\net\sf\odinms\net\login\handler\CreateCharHandler.java

Scroll down tell u see
Code:
if (gender == 0) {

Now where it says

Code:
if (face != 20000 && face != 20001 && face != 20002) {

replace it with

Code:
if (face != 20000 && face != 20001 && face != 20002 && face != 20003 && face != 20004 && face != 20005 && face != 20006 && face != 20007 && face != 20008 && face != 20009 && face != 20010 && face != 20011 && face != 20012 && face != 20013 && face != 20014 && face != 20016) {

Now under that it should say

Code:
}
            if (hair != 30000 && hair != 30020 && hair != 30030 && hair != 30040) {

Replace it with

Code:
}
            if (hair != 30000 && hair != 30020 && hair != 30030 && hair != 30040 && hair != 30050 && hair != 30060 && hair != 30110 && hair != 30130 && hair != 30140 && hair != 30150 && hair != 30190 && hair != 30200 && hair != 30210 && hair != 30220 && hair != 30240 && hair != 30250 && hair != 30260 && hair != 30270 && hair != 30340 && hair != 30350 && hair != 30360 && hair != 30440 && hair != 30580 && hair != 30610 && hair != 30730) {


tell me if it worked if not that means its client based and i waisted 2 hours >.< thanks


 
Junior Spellweaver
Joined
May 26, 2008
Messages
195
Reaction score
0
Re: [Release]HairStyles and Eyes

=\
This is the hairs when you start your character right?
Ive seen someone try this before but i think there method was different :\
Id test it but i deleted my entire java and netbeans last night :\
 
Newbie Spellweaver
Joined
Apr 10, 2008
Messages
52
Reaction score
0
Re: [Release]HairStyles and Eyes

gah yea this is for when u create your char. wasnt gonna finish for females if it didint work
 
You've got my respect!
Joined
Apr 8, 2008
Messages
508
Reaction score
147
Re: [Release]HairStyles and Eyes

This won't work, it's client side.
 
Newbie Spellweaver
Joined
Apr 10, 2008
Messages
52
Reaction score
0
Re: [Release]HairStyles and Eyes

CRAP! =[ well thanks
 
Newbie Spellweaver
Joined
Apr 10, 2008
Messages
48
Reaction score
0
Re: [Release]HairStyles and Eyes

I strongly suggest that you remove your site link from your post.
 
Newbie Spellweaver
Joined
Jun 26, 2008
Messages
31
Reaction score
3
Re: [Release]HairStyles and Eyes

thats not client sided
anything that goes into your java server files is server sided as long as you compile and restart your server and put the new jar file into the proper dist folder.
im not gonna use as i have my players use nx for hairstyles, but isre nice realease and i think you should finish it
 
You've got my respect!
Joined
Apr 8, 2008
Messages
508
Reaction score
147
Re: [Release]HairStyles and Eyes

Uhm, ReEvolution, those files are server-sided.
The choosing of hair is controlled client side.
 
Back
Top