From b83f07275fb87c61f4664a384f3de2a4938ab76c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 4 Jan 2015 17:53:34 +0300 Subject: add support for race selection in char creation packet. Change server version to 4. --- src/char/char.c | 28 ++++++++++++++++++++++++++++ src/char/char.h | 2 ++ src/char/init.c | 1 + 3 files changed, 31 insertions(+) (limited to 'src/char') diff --git a/src/char/char.c b/src/char/char.c index ffb093f..fcb4535 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -31,3 +31,31 @@ void echar_parse_char_login_map_server(int *fd) hookStop(); } } + +void echar_parse_char_create_new_char(int *fdPtr, struct char_session_data* sd) +{ + // ignore char creation disable option + const int fd = *fdPtr; + const int result = chr->make_new_char_sql(sd, (char*)RFIFOP(fd, 2), 1, 1, 1, 1, 1, 1, RFIFOB(fd, 26), RFIFOW(fd, 27), RFIFOW(fd, 29)); + if (result < 0) + { + chr->creation_failed(fd, result); + } + else + { + // retrieve data + struct mmo_charstatus char_dat; + chr->mmo_char_fromsql(result, &char_dat, false); //Only the short data is needed. + + const uint16 race = RFIFOW(fd, 31); + char_dat.class_ = race; + chr->mmo_char_tosql(result, &char_dat); + + chr->creation_ok(fd, &char_dat); + + // add new entry to the chars list + sd->found_char[char_dat.slot] = result; // the char_id of the new char + } + RFIFOSKIP(fd, 31 + 2); + hookStop(); +} diff --git a/src/char/char.h b/src/char/char.h index f1be161..2ebbdb3 100644 --- a/src/char/char.h +++ b/src/char/char.h @@ -6,4 +6,6 @@ void echar_parse_char_login_map_server(int *fd); +void echar_parse_char_create_new_char(int *fdPtr, struct char_session_data* sd); + #endif // EVOL_CHAR_CHAR diff --git a/src/char/init.c b/src/char/init.c index 64f6a29..5193101 100644 --- a/src/char/init.c +++ b/src/char/init.c @@ -60,6 +60,7 @@ HPExport void plugin_init (void) mapif = GET_SYMBOL("mapif"); addHookPre("chr->parse_char_login_map_server", echar_parse_char_login_map_server); + addHookPre("chr->parse_char_create_new_char", echar_parse_char_create_new_char); } HPExport void server_preinit (void) -- cgit v1.2.3-70-g09d2