diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-11-06 18:24:02 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-11-06 18:24:02 +0000 |
commit | 6ae05cf7032a0a70e4953f6b53304f9658319f66 (patch) | |
tree | 8741a0789ffac237fa15d685e537bbf01e45ddc7 /src/gui/char_server.cpp | |
parent | 8684a97f4a531c8e08fd1235ecfab2286ac68d5f (diff) | |
download | mana-client-6ae05cf7032a0a70e4953f6b53304f9658319f66.tar.gz mana-client-6ae05cf7032a0a70e4953f6b53304f9658319f66.tar.bz2 mana-client-6ae05cf7032a0a70e4953f6b53304f9658319f66.tar.xz mana-client-6ae05cf7032a0a70e4953f6b53304f9658319f66.zip |
Added possibility to choose the color of hair
Diffstat (limited to 'src/gui/char_server.cpp')
-rw-r--r-- | src/gui/char_server.cpp | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/src/gui/char_server.cpp b/src/gui/char_server.cpp index dd51e0f1..447860e9 100644 --- a/src/gui/char_server.cpp +++ b/src/gui/char_server.cpp @@ -2,24 +2,24 @@ The Mana World Copyright 2004 The Mana World Development Team - - This file is part of The Mana World. - - The Mana World is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - any later version. - - The Mana World is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with The Mana World; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - By ElvenProgrammer aka Eugenio Favalli (umperio@users.sourceforge.net) + + This file is part of The Mana World. + + The Mana World is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + any later version. + + The Mana World is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with The Mana World; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + By ElvenProgrammer aka Eugenio Favalli (umperio@users.sourceforge.net) */ @@ -114,6 +114,8 @@ void server_char_server() { char_info[i].INT = RFIFOB(24+106*i+101); char_info[i].DEX = RFIFOB(24+106*i+102); char_info[i].LUK = RFIFOB(24+106*i+103); + char_info[i].hair_style = RFIFOW(24+106*i+54); + char_info[i].hair_color = RFIFOW(24+106*i+70); } state = CHAR_SELECT; |