[Request] Guide for Fixing Female Avatars

08/24/2008 21:39 YukiXian#1
Someone can make me an Guide how to fix the Female Avatars?
Cuz if you change them and relog, They are Male avatars.

And how to show other peopel an Effect?
08/25/2008 12:32 alexbigfoot#2
in client.cs find case 142:

Delete :
Code:
                                        if (Face > 200)
                                            Face -= 200;
and add:
Code:
                                        if (MyChar.Model == 1003 || MyChar.Model == 1004)
                                        {
                                            if (Face > 200)
                                                Face -= 200;
                                        }

                                        if (MyChar.Model == 2001 || MyChar.Model == 2002)
                                        {
                                            if (Face > 200)
                                                Face += 0;
                                        }
it works perfect XD
08/25/2008 15:40 YukiXian#3
Quote:
Originally Posted by alexbigfoot View Post
in client.cs find case 142:

Delete :
Code:
                                        if (Face > 200)
                                            Face -= 200;
and add:
Code:
                                        if (MyChar.Model == 1003 || MyChar.Model == 1004)
                                        {
                                            if (Face > 200)
                                                Face -= 200;
                                        }

                                        if (MyChar.Model == 2001 || MyChar.Model == 2002)
                                        {
                                            if (Face > 200)
                                                Face += 0;
                                        }
it works perfect XD
Thanks, Now I only need to know how to show an Effect to everyone,
And someone may know were I can find an list with items that will be dropped when killing an Monster?
08/25/2008 17:59 alexbigfoot#4
entities.cs
08/25/2008 19:51 YukiXian#5
Quote:
Originally Posted by alexbigfoot View Post
entities.cs
Never those few items at the bottom are the items what monsters drop!
08/25/2008 20:59 alexbigfoot#6
well...yeah but that is the single place where are the drops at mobs...if u find another one please tell me
08/25/2008 21:10 YukiXian#7
Quote:
Originally Posted by alexbigfoot View Post
well...yeah but that is the single place where are the drops at mobs...if u find another one please tell me

Sure I will, Think going to open an New Topic with all requests...